在oracle 11g中使用insert插入的错误ID

时间:2016-06-14 16:41:56

标签: database oracle oracle11g rdbms

我有一个包含这个序列的表:

CREATE SEQUENCE "TEST"."TEST_SEQ" MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 301 CACHE 20 NOORDER NOCYCLE ;

在此表中,当我启动多个插入时,我发现存在这种情况:

insert n.1, creates row with id 301

insert n.2, creates row with id 304

insert n.3, creates row with id 305

insert n.4, creates row with id 302

insert n.5, creates row with id 303

insert n.6, creates row with id 306

似乎以随机的方式发生id跳转然后系统“填充”id左边然后恢复所有正常

感谢您的回复

0 个答案:

没有答案