I'm unable to alter the index, perhaps because of syntax issues. When
I tried to drop the index to start over, I got this message:
ORA-02429: cannot drop index used for enforcement of unique/primary
key
What can I do to get around this? Thanks.
Kind Regards
Fraser McCallum
MVP Oracle
www.brainbench.com
"N" <nick...@hotmail.com> wrote in message
news:77c198f0.02010...@posting.google.com...
alter table <table_name> drop primary key cascade;
or
alter table <table_name> drop constraint <constraint_name> cascade;
As the index enforces a constraint you need to drop the constraint not
the index. Dropping the constraint will drop the index.
Hth
Sybrand Bakker, Senior Oracle DBA
To reply remove -verwijderdit from my e-mail address