Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Creates one or more Microsoft Dynamics AX tables in the SQL database. Also, provides an option to create for index.
Syntax
public int tableCreate([boolean indexes, TableId tableId])
Run On
Server
Parameters
- indexes
Type: boolean
A boolean flag that determines whether to create indexes; optional.
- tableId
Type: TableId Extended Data Type
The table handle (0 for all); optional.
Return Value
Type: int
Zero if the method succeeds.
Remarks
Used for low-level maintenance only.
Examples
{
SqlDataDictionary DD = new SqlDataDictionary();
DD.tableCreate(TableName2Id("Address"));
}