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

oracle job定时执行存储过程

时间:2017-02-16 15:34:03      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:oracle   ast   ges   img   repo   epo   creat   存储   info   

 JOB定时跑插入语句
1、建插入数据的存储过程
create or replace procedure report_web as
V_START_DATE DATE;
V_END_DATE  DATE;
begin
V_START_DATE := TRUNC(SYSDATE) - 1;
V_END_DATE    := TRUNC(SYSDATE);
begin
insert into report_web_doctor@HMP
select * from report_web_doctor a
where a.last_update_dtime >= V_START_DATE
and a.last_update_dtime <= V_END_DATE;
commit;
insert into report_web_info@HMP
select * from report_web_info b
where b.last_update_dtime >= V_START_DATE
and b.last_update_dtime <= V_END_DATE;
commit;
end;
end;
2、可视化建JOB
技术分享技术分享

 

oracle job定时执行存储过程

标签:oracle   ast   ges   img   repo   epo   creat   存储   info   

原文地址:http://www.cnblogs.com/wdw31210/p/6405876.html

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