ORA-00001

Error: ORA-00001: unique constraint (string.string) violated

Causa: An UPDATE or INSERT statement attempted to insert a duplicate key.

Acción: Either remove the unique restriction or do not insert the key.

COMENTARIOS:

por Anónimo | 11/01/2007 16:18:18

RE: ORA-00001

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:
*
Remove the unique restriction.
*
Change the restriction to allow duplicate keys. An index could be changed to be a non-unique index, but remember that the primary key must always be unique.
*
Do not insert the duplicate key.
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:
select table_name from all_indexes where index_name='';
this view ('all_indexes') also contains some other information about the index, such as its uniqueness.
and to identify the files that together constitute the index:
select * from all_ind_columns where index_name='';
Hernan Torres
Sistemas :D

por oscar uriel | 24/04/2007 20:25:28

RE: ORA-00001

Buenas tardes!
porque cuando deseo borrar una tabla que previamente indique indexes unique key, y primary key.
me dice que tengo que forzar para borrar no entiendo como forzar.
por la ayuda que me puedan prestar gracias.