oracle job定时执行存储过程
Posted 博客园站长
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle job定时执行存储过程相关的知识,希望对你有一定的参考价值。
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
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定时执行存储过程的主要内容,如果未能解决你的问题,请参考以下文章