CreateUserTable
An internal operation used when GenerateSchemaFiles=OnCreate
This stored procedure is an internal operation that gets executed when running CREATE TABLE statements and GenerateSchemaFiles is set to OnCreate.
Note:このプロシージャは、インデックス付きパラメータを使用します。 インデックス付きパラメータは、プロシージャの入力として単一のパラメータを複数のインスタンスに提供することを容易にします。
Param# という名前の入力パラメータがあるとします。このようなインデックス付きパラメータの複数のインスタンスを入力するには、次のように実行します。
EXEC ProcedureName Param#1 = "value1", Param#2 = "value2", Param#3 = "value3"
以下の表では、インデックス付きの入力パラメータは、名前の末尾に '#' 文字が付きます。
Input
Name | Type | Required | Description |
CreateNotExist | String | False | Whether an existing table is an error or not |
TableName | String | False | The name of the table to create |
ColumnNames# | String | False | For each column, its name |
ColumnDataTypes# | String | False | For each column, its type |
ColumnSizes# | String | False | For each column, its size (ignored) |
ColumnScales# | String | False | For each column, its scale (ignored) |
ColumnIsNulls# | String | False | For each column, whether it allows NULLs (ignored) |
ColumnDefaults# | String | False | For each column, its default value (ignored) |
Location | String | False | Where the schema file is generated |
Result Set Columns
Name | Type | Description |
AffectedTables | String | The number of tables created, either 0 or 1 |