The REBUILD
UNUSABLE
LOCAL
INDEXES
clause of ALTER
TABLE
MODIFY
PARTITION
does not allow you to specify any new attributes for the rebuilt index partition. The following example finds and rebuilds any unusable local index partitions for table scubagear
, partition p1
.
ALTER TABLE scubagear MODIFY PARTITION p1 REBUILD UNUSABLE LOCAL INDEXES;
There is a corresponding ALTER
TABLE
MODIFY
SUBPARTITION
clause for rebuilding unusable local index subpartitions.