首页 > 代码库 > oracle job定时执行存储过程
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定时执行存储过程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。