SQL错误:违反唯一约束条件

java.sql.BatchUpdateException: ORA-00001: 违反唯一约束条件 (AML.PK_LTB_INS_RPOL)

 at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:12296)
 at oracle.jdbc.driver.OracleStatementWrapper.executeBatch(OracleStatementWrapper.java:246)
 at com.sinosoft.lis.vdb.Ltb_ins_rpolDBSet.insert(Ltb_ins_rpolDBSet.java:657)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
 at java.lang.reflect.Method.invoke(Unknown Source)
 at com.sinosoft.lis.pubfun.PubSubmit.saveData(PubSubmit.java:258)
 at com.sinosoft.lis.pubfun.PubSubmit.submitData(PubSubmit.java:53)
 at com.sinosoft.lis.taskservice.CopyOftb_ins_rpolBL.insertData(Songhuanfeng.java:265)
 at com.sinosoft.lis.taskservice.CopyOftb_ins_rpolBL.main(Songhuanfeng.java:274)

解决方法:

(1)检查你定义的主键,是否在插入时是固定的,但是你多次调用,会发生“违反唯一约束条件”的错误

(2)表中 设置了主键,但是你重复的调用或者设置一样的至 

你可能感兴趣的:(JAVA报错)