Search notes:

Oracle: DBA_SCHEDULER_JOB_RUN_DETAILS

select
   jrd.job_name,
   jrd.owner,
   jrd.log_date,
   jrd.log_id,
   jrd.status,
   jrd.output,              -- output and binary_output capture the output
   jrd.binary_output,       -- of a script or executable
   jrd.additional_info,
   jrd.actual_start_date,
   jrd.binary_errors,
   jrd.cpu_used,
   jrd.credential_name,
   jrd.credential_owner,
   jrd.destination,
   jrd.destination_owner,
   jrd.error#,
   jrd.errors,
   jrd.instance_id,
   jrd.job_subname,
   jrd.req_start_date,
   jrd.run_duration,
   jrd.session_id,
   jrd.slave_pid
from
   sys.dba_scheduler_job_run_details jrd
order by
   jrd.log_date desc
;

See also

Entries in dba_scheduler_job_run_details can be purged with dbms_scheduler.purge_log.
Column store_output of dba_scheduler_jobs
dba_scheduler_job_log
data dictionary

Index