oracle 11.2.0.1 sequence bug-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 1156343
  • 博文数量: 166
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 3760
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-30 13:00
个人简介

about me:oracle ace pro,optimistic,passionate and harmonious. focus on oracle,mysql and other database programming,peformance tuning,db design, j2ee,linux/aix,architecture tech,etc

文章分类

全部博文(166)

文章存档

2024年(21)

2023年(28)

2022年(43)

2020年(62)

2014年(3)

2013年(9)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2013-04-25 10:53:54

11.2.0.1 sequence bug,在插入语句的时候不是从最小值开始,从第2个值开始。下面以1测试



connected to  database  enterprise edition release 11.2.0.1.0 
connected as dingjun123

sql> 
sql> drop sequence seq;

sequence dropped
sql> create sequence seq
  2  start with 1
  3  increment by 1;

sequence created
sql> drop table t;

table dropped
sql> create table t(id number);

table created

--直接访问没有问题

sql> select seq.nextval from dual;

   nextval
----------
         1

sql> 
sql> drop sequence seq;

sequence dropped
sql> create sequence seq
  2  start with 1
  3  increment by 1;

sequence created

--靠,插入的时候从第2个开始了,是bug吗?我想应该是bug
sql> insert into t  values(seq.nextval);

1 row inserted

sql> select id from t;

        id
----------
         2
阅读(2944) | 评论(0) | 转发(1) |
0

上一篇:没有了

下一篇:

给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图