Find the last JOB run status

set lin 300
col JOB_NAME format a30
col STATUS format a15
col ADDITIONAL_INFO format a100
select JOB_NAME,STATUS,ADDITIONAL_INFO from dba_scheduler_job_run_details
where log_id in(select max(log_id) from dba_scheduler_job_run_details where 
job_name like upper('&job_name'));

Leave Comment

Your email address will not be published. Required fields are marked *