文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>ORACLE 自动增长字段

ORACLE 自动增长字段

时间:2010-10-06  来源:gjbxx110

 他大爷的,这个问题折腾了老夫2个小时,以前用的好好地。。。。怎么今天突然出现问题了?

我还以为是其它什么地方出问题了呢,进控制台一看,刚建好的触发器状态显示为“invalid”无效。。。。。哦?奇怪了。。。。找来找去原来是用户权限的问题。。在sqlplus中一会儿切到DBA,一会儿切到普通用户下。。。。汗。。犯得这是什么低级错误嘛!。。气傻老夫啊

 

原因是:序列是在系统管理员权限下建的,而触发器又是在普通用户下建的,所以,在触发器中使用系统管理员权限下建的序列就无效了。

解决方法:同一个用户下建序列和触发器,即可。

 

1。先sqlplus登录了:

SQL> conn gch/gch;

 

2。建表:

create table position
(
 id number(10) not null,
 deviceName varchar2(30) not null primary key,
 imageName varchar2(30) not null,
 effectName varchar2(30) not null,
 xPos number(6) not null,
 yPos number(6) not null,
 data number(10,4) 
)
tablespace users
/

 

3。建序列:

create sequence position_seq

start with 1

increment by 1

minvalue 1

maxvalue 9999999

nocycle

nocache

noorder;

/

4。建触发器:

create or replace trigger position_trigger
  before insert on position
  for each row
begin
    select position_seq.nextval into:new.id from sys.dual;
end;
/

5。好了,insert一条记录测试一下喽。。。。

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载