ORA-01408: such column list already indexed
I did a
drop user cascade
on a schema and re-created that user. Then I newly created all the tables and indexes in the schema
Suspicious statements are two indexes that are created over the same key but with a different name. Could it be that?
CREATE INDEX IDX1 on owner.tab(ID)CREATE INDEX IDX2 on owner.tab(ID)
--
Christoph