How to fix the Oracle error ORA-29952: cannot issue DDL on a domain index partition marked as LOADING?
In this post, you’ll learn more about the Oracle ErrorORA-29952: cannot issue DDL on a domain index partition marked as LOADING with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
ORA-29952: cannot issue DDL on a domain index partition marked as LOADING
Reason for the Error ORA-29952: cannot issue DDL on a domain index partition marked as LOADING
Tried to issue a DROP/ALTER/TRUNCATE on a domain index partition in a LOADING state.
How to fix the Error ORA-29952: cannot issue DDL on a domain index partition marked as LOADING ?
You can fix this error in Oracle by following the below steps
Wait till the index partition operation completes OR issue a DROP INDEX FORCE to drop the index OR issue a ALTER TABLE DROP PARTITION to drop the partition.
Leave Your Comment