2026-03-12 20:23:15
This commit is contained in:
27
vdh/list_windows.sql
Normal file
27
vdh/list_windows.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
-- list information on the job scheduler windows
|
||||
|
||||
set linesize 240
|
||||
set pages 50000
|
||||
|
||||
column owner format a30
|
||||
column window_name format a30
|
||||
column repeat_interval format a70
|
||||
column duration format a15
|
||||
column str_start_date format a40
|
||||
column str_next_start_date format a40
|
||||
|
||||
select
|
||||
owner,
|
||||
window_name,
|
||||
enabled,
|
||||
to_char(start_date, 'DD/MM/YYYY HH24:MI:SS TZR') str_start_date,
|
||||
repeat_interval,
|
||||
duration,
|
||||
to_char(next_start_date, 'DD/MM/YYYY HH24:MI:SS TZR') str_next_start_date
|
||||
from
|
||||
dba_scheduler_windows
|
||||
order by
|
||||
owner,
|
||||
window_name
|
||||
;
|
||||
|
||||
Reference in New Issue
Block a user