Find jobs and dependencies run between two timestamps

jobsoracleoracle-11g-r2

I would like to know what jobs ran and dependencies (what triggered them) between two timestamps or dates.

I have been looking in all the oracle views. I cannot find anything like this in the dba_scheduler_jobs view.

Best Answer

There is no guaranteed method for this. The closest you can get to this is: DBA_SCHEDULER_JOB_RUN_DETAILS, but:

  • logging for scheduler jobs can be disabled, so it does not necessarily contain all jobs runs
  • there is no information about what started the job

Also, there is no history for DBMS_JOB jobs.