2016-02-26 38 views

回答

0

由于您使用的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;