I created some indexes for a table. When I try to delete index which belong to that table, I got error ORA-02429. To overcome with this issue I did something as bellow;
alter table TABLE_NAME drop constraint INDEX_NAME;
alter table TABLE_NAME drop constraint INDEX_NAME;
drop index INDEX_NAME;
Loves,
Comments
Post a Comment