|
Cry
about... ORA-00001: unique constraint violatedSymptom:When inserting or updating data, the following error is returned:
Cause:This error means that an attempt has been made to insert a record with a duplicate (unique) key. This error will also be generated if an existing record is updated to generate a duplicate (unique) key. Typically this is a duplicate primary key, but it need not be the primary key. Remedy:Only one of the following will be appropriate:
Usually this error indicates an application error or error on the part of the user. The error gives the name of the constraint that has been violated, but not the name of the table. To identify the table and find out all the relevant information about the index it is normally easiest to use Oracle Schema Manager - the name of the constraint given in the error will match with the name of the corresponding index. Alternately, to identify the name of the table use:
this view (' and to identify the files that together constitute the index:
|