DBA Hub

📋Steps in this guide1/1

log information for all Scheduler jobs

set pagesize 299 set lines 299 col job_name for a24 col log_date for a40 col operation for a19 col additional_info a79 select job_name,log_date,status,OPERATION,ADDITIONAL_INFO from dba_scheduler_job_log order by log_date desc;

oracle configurationintermediate
by OracleDba
13 views
1

log information for all Scheduler jobs

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
set pagesize 299
set lines 299
col job_name for a24
col log_date for a40
col operation for a19
col additional_info a79
select job_name,log_date,status,OPERATION,ADDITIONAL_INFO from dba_scheduler_job_log order by log_date desc;

Comments (0)

Please to add comments

No comments yet. Be the first to comment!