You can instruct the database to reduce by one the number of index partitions in a hash partitioned global index using the COALESCE
PARTITION
clause of ALTER
INDEX
. The database selects the partition to coalesce based on the requirements of the hash partition. The following statement reduces by one the number of partitions in the hgidx
index, created in "Creating a Hash Partitioned Global Index":
ALTER INDEX hgidx COALESCE PARTITION;