2026-03-12 20:23:15
This commit is contained in:
19
timhall/11g/autotask_schedule.sql
Normal file
19
timhall/11g/autotask_schedule.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
-- -----------------------------------------------------------------------------------
|
||||
-- File Name : https://oracle-base.com/dba/11g/autotask_schedule.sql
|
||||
-- Author : Tim Hall
|
||||
-- Description : Displays the window schedule the automatic maintenance tasks.
|
||||
-- Requirements : Access to the DBA views.
|
||||
-- Call Syntax : @autotask_schedule.sql
|
||||
-- Last Modified: 14-JUL-2016
|
||||
-- -----------------------------------------------------------------------------------
|
||||
|
||||
COLUMN window_name FORMAT A20
|
||||
COLUMN start_time FORMAT A40
|
||||
COLUMN duration FORMAT A20
|
||||
|
||||
SELECT *
|
||||
FROM dba_autotask_schedule
|
||||
ORDER BY start_time;
|
||||
|
||||
|
||||
COLUMN FORMAT DEFAULT
|
||||
Reference in New Issue
Block a user