在oracle存储过程中建立序列

proceduregl_voucher_noadd(accyearvarchar2,accmonthvarchar2,infoinoutvarchar2)isxnumbe... procedure gl_voucher_noadd(accyear varchar2,accmonth varchar2,info in out varchar2)
is
x number ;
begin
select max(num) into x from gl_voucher where year=accyear and period=accmonth and pk_group='0001V210000000004MCY';
if x=null then x := '500';
else x :=x;
execute immediate'drop SEQUENCE gl_voucher_num'; --删除序列
commit;
end if;
execute immediate 'create SEQUENCE gl_voucher_num INCREMENT BY 1 START WITH 500 NOMAXVALUE NOCYCLE CACHE 10 return varchar2 authid current_user';

commit;
-- 表头
execute immediate 'update gl_voucher a set num =gl_voucher_num.nextval'; /*where nvl(a.free9,'~')!='~' and year=accyear and period=accmonth and pk_group='0001V210000000004MCY'';
-- 表体*/
execute immediate 'update gl_detail a set nov =(select num from gl_voucher where pk_voucher=a.pk_voucher)'
/* where nvl(a.free9,'~')!='~' and yearv=accyear and periodv=accmonth and pk_group='0001V210000000004MCY''*/;

info:=info||'序列改变影响行数:'||SQL%rowcount||'; ';
exception
when others then
info:=info||'更新序列号失败!';

end;
单步执行的时候运行到execute immediate 'create SEQUENCE gl_voucher_num INCREMENT BY 1 START WITH 500 NOMAXVALUE NOCYCLE CACHE 10 return varchar2 authid current_user';这里的时候直接运行exception 然后就报错更新序列号失败! 为什么
展开
 我来答
198901245631
推荐于2017-10-07 · TA获得超过3.5万个赞
知道大有可为答主
回答量:9037
采纳率:92%
帮助的人:1749万
展开全部
序列主要是用来生成固定的编号的,如:每次递增一即可。
create sequence SEQ_ID
minvalue 1
maxvalue 99999999
start with 1
increment by 1
cache 30
cycle;
之后执行:
insert into tab (auto_id) values (SEQ_ID.Nextval);
备注:sequence 是一个自增长的序列,每次调用nextval的时候会自动增加,可以定义起始值,最大值,增量,cycle是表示循环,即到最大值后从起始值重新开始。 每次执行都是会自增的。
太平岁年丰9
2014-09-16 · TA获得超过1231个赞
知道小有建树答主
回答量:1017
采纳率:100%
帮助的人:1095万
展开全部
execute immediate 'create SEQUENCE gl_voucher_num INCREMENT BY 1 START WITH 500 NOMAXVALUE NOCYCLE CACHE 10' return varchar2 authid current_user; 语法错误,注意引号位置
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
芳山之0h
2014-09-16
知道答主
回答量:59
采纳率:0%
帮助的人:19.6万
展开全部
好 用函数实现
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式