DROP INDEX

Function

Deletes an index.

Precautions

Only the owner of an index or a system administrator can run the DROP INDEX command.

Syntax

1
2
DROP INDEX [ CONCURRENTLY ][ IF EXISTS ] 
    index_name [, ...] [ CASCADE | RESTRICT ];

Parameter Description

Examples

Delete the ds_ship_mode_t1_index2 index:

1
DROP INDEX tpcds.ds_ship_mode_t1_index2;

Helpful Links

ALTER INDEX, CREATE INDEX