Error code

Oracle ORA-00955

ORACLEORA-00955
Database Error Code· An error code returned by a database server such as PostgreSQL or MySQL.

What it means

name is already used by an existing object — DDL name conflict.

How to fix it

  1. Drop or rename the existing object before creating the new one.
  2. Use a different name for the new object.
  3. Query ALL_OBJECTS WHERE OBJECT_NAME = '<name>' to identify what already owns the name.

Not affiliated with Oracle. Answer summarized from the manufacturer's manual linked above; consult that source for the authoritative procedure.