This commit is contained in:
Yacine31
2023-11-09 02:54:43 +01:00
parent fed0b1dd33
commit cecd195e76
31 changed files with 759 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
prompt <h2>Failed scheduled jobs </h2>
SELECT owner, job_name, job_type, state, TRUNC(start_date) SDATE, TRUNC(next_run_date) NXTRUN, failure_count
FROM dba_scheduler_jobs
WHERE failure_count <> 0;
exit