Data Archive
- Data Archive 6.5
- All Products
create index on <schema name>.<table name> (column name);
Argument
| Description
|
---|---|
schema name
| Required. Name of the schema that includes the table columns you want to index.
|
table name
| Required. Name of the table that includes the columns you want to index.
|
(column name)
| Required. Name of the columns on which you want to create an index. You can create the index on one or more columns in the table. The maximum number of columns is the maximum amount of columns in the table.
Use a comma to separate multiple columns.
|