ALTER INDEX Examples
-
Deactivating the
IDX_UPDATER
indexALTER INDEX IDX_UPDATER INACTIVE;
-
Switching the
IDX_UPDATER
index back to the active state and rebuilding itALTER INDEX IDX_UPDATER ACTIVE;
Deactivating the IDX_UPDATER
index
ALTER INDEX IDX_UPDATER INACTIVE;
Switching the IDX_UPDATER
index back to the active state and rebuilding it
ALTER INDEX IDX_UPDATER ACTIVE;
DROP INDEX
Drops an index
DSQL, ESQL
DROP INDEX indexname
Parameter | Description |
---|---|
indexname |
Index name |
The DROP INDEX
statement drops (deletes) the named index from the database.
Note
|
A constraint index cannot be dropped using |