欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

oracle sequence job 博客分类: oracle oracle 

程序员文章站 2024-02-13 16:35:28
...
declare
job1 number;
startdate date:=to_date('2011-10-20 00:00:00','yyyy-mm-dd hh24:mi:ss');
begin
--创建序列
drop sequence seq_epcis_web_undr_opn;
create sequence seq_epcis_web_undr_opn    --创建序列名字为   a_seq
minvalue 1               --  最小值为      1
maxvalue 9999999999999999999999999999   ---  最大值

start with 1            ---   开始值       1
increment by 1
cache 100;

dbms_job.submit(job1,'P_RECALLTASK;',startdate,'startdate+1/1440');--启动任务
end;

 

相关标签: oracle