DROP_SHADOW_INDEX
Drops a shadow index for the specified index. When you drop a shadow index, if it is partitioned, then its metadata and the metadata of all this shadow index’s partitions are dropped. This procedure also drops all the shadow index tables and cleans up any online pending queue.
Syntax
CTX_DDL.DROP_SHADOW_INDEX(
idx_name in VARCHAR2
);
idx_name
The name of a valid CONTEXT indextype.
Example
The following example drops the shadow index myshadowidx:
begin
ctx_ddl.drop_shadow_index('myshadowidx');
end;
Related Topics
CTX_DDL.CREATE_SHADOW_INDEX