A cluster can be dropped only if the participating tables have been dropped first, otherwise you'll get:
ORA-00951: cluster not emptyAlternatively, if you are absolutely sure, you can add the INCLUDING TABLES clause:
drop CLUSTER dummy_cluster INCLUDING TABLESIf there are any tables whose constraints point to the cluster table and are preventing you from dropping the cluster and the tables, you can also add the CASCADE CONSTRAINTS clause to the statement:
/
drop CLUSTER dummy_cluster INCLUDING TABLES CASCADE CONSTRAINTS
/
See message translations for ORA-00951 and search additional resources
No comments:
Post a Comment