|
Path
|
Type
|
Required?
|
Description
|
|
/TABLE_DEF_P
|
PARAMLIST
|
Yes
|
Table's description
|
|
/TABLE_DEF_P/TABLE_TABLESPACE
|
PARAM
|
|
Tablespace in which to create the table (string)
|
|
/TABLE_DEF_P/TABLE_NAME
|
PARAM
|
Yes
|
Table name (string)
|
|
/TABLE_DEF_P/TABLE_TEMP
|
PARAM
|
|
TRUE if the table to create is temporary (boolean)
|
|
/TABLE_DEF_P/TABLE_COMMENT
|
PARAM
|
|
Comment on a table (string)
|
|
/FIELDS_A
|
DATA_MODEL
|
Yes
|
Table's fields description
|
|
/FIELDS_A/@COLUMN_NAME
|
DATA_MODEL_COLUMN
|
Yes
|
A table's field name (string)
|
|
/FIELDS_A/@COLUMN_TYPE
|
DATA_MODEL_COLUMN
|
Yes
|
A table's field type (string)
|
|
/FIELDS_A/@COLUMN_NNUL
|
DATA_MODEL_COLUMN
|
|
TRUE if table's field can't be NULL (boolean)
|
|
/FIELDS_A/@COLUMN_AUTOINC
|
DATA_MODEL_COLUMN
|
|
TRUE if table's field must be auto incremented (boolean)
|
|
/FIELDS_A/@COLUMN_UNIQUE
|
DATA_MODEL_COLUMN
|
|
TRUE if table's field must be unique (boolean)
|
|
/FIELDS_A/@COLUMN_PKEY
|
DATA_MODEL_COLUMN
|
|
TRUE if table's field is a primary key (boolean)
|
|
/FIELDS_A/@COLUMN_DEFAULT
|
DATA_MODEL_COLUMN
|
|
A table's field default value (string)
|
|
/FIELDS_A/@COLUMN_CHECK
|
DATA_MODEL_COLUMN
|
|
A table's field CHECK condition (string)
|
|
/FIELDS_A/@COLUMN_COMMENT
|
DATA_MODEL_COLUMN
|
|
A comment on the table's field (string)
|
|
/FKEY_S
|
DATA_SEQUENCE
|
|
Sequence representing foreign keys description
|
|
/FKEY_S/FKEY_REF_TABLE
|
PARAM
|
|
The foreign key's referenced table (string)
|
|
/FKEY_S/FKEY_FIELDS_A
|
DATA_MODEL
|
|
The foreign key's field's being used
|
|
/FKEY_S/FKEY_FIELDS_A/@FK_FIELD
|
DATA_MODEL_COLUMN
|
|
A foreign key's field's from the table to create
|
|
/FKEY_S/FKEY_FIELDS_A/@FK_REF_PK_FIELD
|
DATA_MODEL_COLUMN
|
|
A foreign key's field's from the referenced table
|
|
/FKEY_S/FKEY_ONUPDATE
|
PARAM
|
|
The action to take when the referenced field is updated (string)
|
|
/FKEY_S/FKEY_ONDELETE
|
PARAM
|
|
The action to take when the referenced field is deleted (string)
|
|
/FKEY_S/FKEY_DEFERRABLE
|
PARAM
|
|
TRUE if the foreign key is deferrable until the end of a transaction (boolean)
|
|
/TABLE_CONSTRAINTS_S
|
SEQUENCE
|
|
Sequence representing table constraints
|
|
/TABLE_CONSTRAINTS_S/CONSTRAINT_STRING
|
SEQUENCE
|
|
A table constraint (string)
|