A reader, June 16, 2003 - 12:25 pm UTC
It works. Great! Oracle documentation is not very clean on this.
Thanks,
BTW, normally runing dbms_* package, commit is not necessary. But for dbms_job.*, we have to commit it. It is not consistent with other dbms packages. Any reason for that?
June 17, 2003 - 6:33 am UTC
only those packages that commit say "we commit" - I would say it is the exception to commit -- not the "norm"
question about interupted job
Jerry, July 17, 2003 - 2:32 pm UTC
Tom,
I have a question. I have some database jobs set up to run at night. The server went down at night so that jobs did not run. When the server/db is back up online, the jobs automatically kicked in immediately. Is there any way to prevent the jobs from running other than manually break the job?
Thanks!
July 17, 2003 - 3:47 pm UTC
have the jobs themselves check the time of day. eg instead of scheduling "p;", schedule
if ( to_char(sysdate,'hh24') between 0 and 6 ) then p; end if;
they'll "run" upon startup but not really run.
thanks
Jerry, July 17, 2003 - 5:27 pm UTC
Thanks Tom for the great idea and quick response even in your vacation week. You are great!
Jod schdule time change
dkm, July 25, 2015 - 11:41 am UTC
I hv created a job schedule e.g on 6.00am . But due to some server issue, job schedule is not processed . when server restart,that schedule is processed but time is changed to e.g. 6.00 am to 8.00am.
So my question is that how can i retrive the previous time i.e. 6.00 am because it is already changed.