违反了唯一性约束,所以导致插入不正确。
ORACLE违反唯一约束条件解决方法
java代码报错:
java.sql.BatchUpdateException: ORA-00001: 违反唯一约束条件 (TTT.table)
at oracle.jdbc.driver.DatabaseError.throwBatchUpdateException(DatabaseError.java:629)
at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:9447)
at oracle.jdbc.driver.OracleStatementWrapper.executeBatch(OracleStatementWrapper.java:211)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
手动插入数据报错:
解决方法:
1、使用sql查询主键的唯一约束当前最大值:
select max(id) from table;(id为number类型)
select max(to_number(id)) from table;(id为非number类型)
2、使用sql查询该表的序列的下一个值
select SEQ.NEXTVAL from dual;(seq是对应表的序列名)
3、最后使用PL/SQL客户端编辑序列,将序列的下一个值修改成大于表中的最大值即可解决问题。
违反唯一约束条件了,可能是你的主键值重复了,如果是SEQ_DICTPARAM.NEXTVAL生成的值在数据库里已经存在,则会报这个错误
可以先看下当前序列生成的值是多少:
select SEQ_DICTPARAM.NEXTVAL from dual;
然后查看数据库里这个字段的最大值是多少
select max(serial_no) from TDICTPARAM;
如果库里的最大值小于序列生成的值,就不会重复了