Oracle dbms_scheduler - react to change of system date - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T00:12:42Zhttp://stackoverflow.com/feeds/question/308793http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/308793/oracle-dbmsscheduler-react-to-change-of-system-date1Oracle dbms_scheduler - react to change of system datePeter Lang2008-11-21T13:41:12Z2008-11-24T16:47:44Z
<p>I've got a <em>dbms_scheduler</em>-Job running in Oracle 10.2.0.</p>
<p>When I change the system date back to yesterday, the job will wait for one day to continue its work. The reason for this is that <em>next_run_date</em> does not change.</p>
<p>This does not happen regularly, but sometimes someone decides to change the system date without thinking or even knowing about oracle jobs running.</p>
<p>Any suggestions on how to keep my job running with the configured interval (without having it to change manually)?</p>
http://stackoverflow.com/questions/308793/oracle-dbmsscheduler-react-to-change-of-system-date/309087#3090873Answer by Brett McCann for Oracle dbms_scheduler - react to change of system dateBrett McCann2008-11-21T15:21:31Z2008-11-21T15:21:31Z<p>If you are changing the system date out from underneath Oracle, your hands might be tied. Is there a reason you are regularly changing the system date? If so, perhaps you should create a script for doing so, and have that script also update next_run_date.</p>