Update 36_check_failed_cheduler_jobs.sql

This commit is contained in:
Yacine31
2023-11-15 12:11:03 +01:00
parent 43dc58ef4d
commit 32cb16dff0

View File

@@ -2,6 +2,6 @@ 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