Reputation: 2194
ORA-00955: name is already used by an existing object
There are so many statements and so many objects already. Then, how do you find out which object (table, column, sequence, view etc) caused this error to occur ?
I tried these links, but could not solve the problem -
Upvotes: 2
Views: 3557
Reputation: 60312
If you're running a script in SQL*Plus, you could SET ECHO ON
and then spool the output to a file for later analysis.
Upvotes: 1