Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一份计划在每天指定时间运行的工作。如何阻止它仅从下一个计划运行?然后它应该像往常一样在连续的时间表中运行。谢谢,
由于您使用的是dbms_job包而不是更新的dbms_scheduler包,因此您可以调用next_date
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;