You tried to create a table, view, index, synonym or other object with a name that is already in use. For a listing of objects with a particular name, you can run the following query: SELECT * FROM all_objects WHERE object_name = 'NAME'; Action: The options to resolve this Oracle error are:
1. Rename your object that you are trying to create so that it is unique. 2. Drop the existing object and create the new object.
Related Terminology : ORA-00955
|