Queries in oracle indexing [message #435717] |
Thu, 17 December 2009 10:19 |
sathik
Messages: 196 Registered: August 2009 Location: INDIA
|
Senior Member |
|
|
I have a range partitioned table contains 4 partitions and the table has 2 normal indexes.
When I was dropping an one partition from the table through the following way,
alter table <table_name> drop partition <partition_name>;
the indexes are present in the table become UNUSABLE.
So to avoid this, Shall I use the below query to drop a partition?
alter table <table_name> drop partition <partition_name> update global indexes;
Note: there are 2 CLOB columns in that table.
[Updated on: Thu, 17 December 2009 10:39] Report message to a moderator
|
|
|
|
|
|
|