sky scraper
sky scraper

Reputation: 2194

How to get the exact cause for the error - ORA-00955: name is already used by an existing object?

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

Answers (1)

Jeffrey Kemp
Jeffrey Kemp

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

Related Questions