10
Duplicate key was ignored.
This error occurs when you try to insert duplicate key values in a column or columns which have a unique index that was created with the option ignore_dup_key.
Adaptive Server ignores the commands in a transaction which try to insert a duplicate index. The rest of the commands in the transaction will complete normally.
No action is necessary.
If you want the row inserted:
Eliminate the unique index
or:
Remove duplicate values. If the duplicate values are a result of incorrect data, change the data and rerun the transaction.
Refer to “create index” in the Reference Manual: Commands.
All versions