Oracle dbms_scheduler - react to change of system date - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T00:12:42Z http://stackoverflow.com/feeds/question/308793 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/308793/oracle-dbmsscheduler-react-to-change-of-system-date 1 Oracle dbms_scheduler - react to change of system date Peter Lang 2008-11-21T13:41:12Z 2008-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#309087 3 Answer by Brett McCann for Oracle dbms_scheduler - react to change of system date Brett McCann 2008-11-21T15:21:31Z 2008-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>