I got an error while inserting record in to the MY_TABLE as
ORA-00001: unique constraint (TEST.MY_TABLE_PK) violated
That might be due to the duplicate TRANS_ID
. But I don't have any idea to sort-out this issue. How can I avoid ORA-00001
error and insert record in to the MY_TABLE
.
CREATE UNIQUE INDEX "MY_TABLE_PK" ON "MY_TABLE_TRANS" ("TRANS_ID")
PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
TABLESPACE "TEST" ;
TRANS_ID
twice – a_horse_with_no_nameINSERT
statement so that they don't insert the same value twice. – a_horse_with_no_name