Schema object properties
|
CREATE INDEX syntax
|
Remarks
|
damobj_stat
table_qualifier
table_owner
table_name
non_unique = FALSE (if UNIQUE is specified. TRUE Otherwise)
index_qualifier
index_name
seq_in_index = number indicating the sequence of the column in the index. Numbers start at 1
column_name = name of the column
collation = 'A' for ASC, 'D' for DESC, '\0' Otherwise
|
CREATE [UNIQUE] INDEX index_name ON base_table_name
(column_identifier [ASC | DESC])
|
The index information is mapped to a list of schema object of type DAMOBJ_TYPE_STAT. The number of stat objects in the list is based on the number of columns in the CREATE INDEX command.
|