DROP INDEX Description Deletes an index on the specified table. Syntax DROP INDEX [index_owner_name.]index_name [ON [table_owner_name.]table_name] Arguments index_owner_name If index_owner_name is specified and is different from the name of the user executing the statement, then the user must have DBA privileges. table_name The table_name argument is optional. If specified, the index_name is verified to correspond to the table. Warning: Do not DROP indexes on primary or foreign keys. This can lead to relational integrity issues. Use ALTER TABLE to perform any changes involving constraints. Example DROP INDEX custindex ON customer ; Authorization The user executing this statement must have any of the following privileges:
|
|||||||||