This is an old revision of the document!
CREATE [ < GLOBAL | LOCAL > ] TEMPORARY ] TABLE table
[ NODE node]
[ OPTIONS "options" ]
[ PHYSICAL <"filespec" | rdbms_table> ]
[ AUTOFILTER "criteria" ]
[ DATA_CACHING < cache_size | DYNAMIC | NONE > ]
[ PARTITION_BY "criteria" ]
[ INDEX_MAINTENANCE <API | DBMS> ]
(
column_specification,
[ constraint_specification, ]
[ index_specification, ]
[ index_group_specification ]
)
[ AS statement ]
[ IN filename ]
[ WITH options ]
column_name column_datatype
[ PHYSICAL "physical_name" ]
[ USAGE usage ]
[ FORMAT format ]
[ constraint_specification ]
[ index_specification ]
[ AS expression ],
Normal constraint definition:
[ CONSTRAINT constraint ]
< PRIMARY [ KEY ] ( column [, column ... ] ) |
UNIQUE [ KEY ] ( column [, column ... ] ) |
DISTINCT [ KEY ] ( column [, column ... ] ) |
FOREIGN [ KEY ] ( column [, column ... ] )
REFERENCES table [ ( column [, column ... ] ) ] [ PREJOIN ] >
Inlined constraint definition:
[ CONSTRAINT constraint ]
< PRIMARY [ KEY ] |
UNIQUE [ KEY ] |
DISTINCT [ KEY ] |
FOREIGN [ KEY ] REFERENCES table [ ( column [, column ... ] ) ] [ PREJOIN ] >
Normal index specification:
[ < OMNIDEX | QUICKTEXT | FULLTEXT | CUSTOM | NATIVE > [INDEX]
( < column | substring > [ , < column | substring > ... ] )
indexing_options
Inlined index specification:
[ < OMNIDEX | QUICKTEXT | FULLTEXT | CUSTOM | NATIVE > [INDEX]
indexing_options
indexing_options:
Options available for OMNIDEX index:
[ BITMAP ]
[ STANDALONE ]
[ < CASE_INSENSITIVE | CASE_SENSITIVE > ]
Options available for QUICKTEXT indexes:
[ < CASE_INSENSITIVE | CASE_SENSITIVE > ]
Options available for FULLTEXT indexes:
[ < CASE_INSENSITIVE | CASE_SENSITIVE > ]
Options available for CUSTOM indexes:
[ BITMAP ]
[ STANDALONE ]
[ KEYWORDING ]
[ PROXIMITY ]
[ < CASE_INSENSITIVE | CASE_SENSITIVE > ]
[ EXCLUDED_WORDS ]
[ PHONETIC ]
[ PREJOIN table ]
[ < RECORD_SPECIFIC | RECORD_COMPLEX > ]
INDEX GROUP [ ( owner ) ] group ( index [, index ... ] )