码迷,mamicode.com
首页 > 数据库 > 详细

oracle 使用job定时自动重置sequence

时间:2015-12-23 12:58:34      阅读:337      评论:0      收藏:0      [点我收藏+]

标签:

一、赋予用户创建和删除sequence的权限

grant create any sequence to user_name;

grant drop any sequnce to user_name;

二、查看job设置

show parameter job

如果job_queue_processes=0 ,那么将该值更新为1

alter system set job_queue_processes=1;

三、创建存储过程用于删除和创建sequence

create or replace procedure ClearSeq as
  n_count number(8);
begin
  select count(1)
    into n_count 
    from user_sequences t
   where t.sequence_name = ‘SEQ_ID‘;
   
  if n_count > 0 then  
    execute immediate ‘drop sequence SEQ_ID‘;
  end if;
  
  execute immediate ‘create sequence SEQ_ID 
  minvalue 1 
  maxvalue 99999999 
  start with 1 
  increment by 1 
  NOCYCLE
  NOCACHE‘;  
  commit;
end;

四、创建job执行上述存储过程

declare  
job number;     
begin
sys.dbms_job.submit(job,‘clearseq;‘,sysdate,‘sysdate+1‘);
end;

oracle 使用job定时自动重置sequence

标签:

原文地址:http://www.cnblogs.com/renrsh/p/5069291.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!