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执行顺序 博客分类: Oracle小记 oracle执行顺序
-
oracle10 odbc连接字符串 博客分类: 备忘 odbc vc
-
oracle 分区 博客分类: Oracle小记 oracle分区
-
jdbc 报错 - 索引中丢失 IN 或 OUT 参数: 博客分类: Oracle小记 jdbcoracle报错索引中丢失 IN 或 OUT 参数:
-
oracle 分页存储过程 博客分类: Oracle小记 oracle存储过程分页
-
oracle 插入字符串 博客分类: Oracle小记 oracle插入字符串
-
oracle WM_CONCAT行转列 博客分类: Oracle小记 oracleWM_CONCAT
-
oracle merge 博客分类: oracle oracle
-
oracle sequence job 博客分类: oracle oracle
-
oracle 函数 博客分类: Oracle小记 oracle函数