我的工作计划在每天的指定时间运行。如何阻止它仅从下一个计划中运行?然后它应该在连续的时间表中照常运行。 谢谢,
答案 0 :(得分:1)
由于您使用的是dbms_job
软件包而非最近的dbms_scheduler
软件包,因此您只需拨打next_date
begin
dbms_job.next_date( <<your job number from dba_jobs>>,
<<the date you want it to run next>> );
commit;
end;