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

Oracle

时间:2018-03-27 12:23:08      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:number   trunc   语句   log   creat   commit   _id   end   body   

 

 

create or replace procedure errormap
is
begin
--八大异常之一 挂牌价为0或者空
delete T where type=‘1‘;
insert into T(NAME,VALUE1,VALUE2,type)
select NAME,VALUE1,VALUE2,type from T2

COMMIT;
end;

 

declare
job number;
BEGIN
DBMS_JOB.SUBMIT(
JOB => job, /*自动生成JOB_ID*/
WHAT => ‘ERRORMAP;‘, /*需要执行的过程或SQL语句*/
NEXT_DATE => sysdate,
INTERVAL => ‘TRUNC(sysdate+1)+1/24‘ /*每天01点*/
);
COMMIT;
DBMS_JOB.RUN(job);
end;

Oracle

标签:number   trunc   语句   log   creat   commit   _id   end   body   

原文地址:https://www.cnblogs.com/18553325o9o/p/8656278.html

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