2026-03-12 20:23:15
This commit is contained in:
23
timhall/10g/job_chain_steps.sql
Normal file
23
timhall/10g/job_chain_steps.sql
Normal file
@@ -0,0 +1,23 @@
|
||||
-- -----------------------------------------------------------------------------------
|
||||
-- File Name : https://oracle-base.com/dba/10g/job_chain_steps.sql
|
||||
-- Author : Tim Hall
|
||||
-- Description : Displays scheduler information about job chain steps.
|
||||
-- Requirements : Access to the DBA views.
|
||||
-- Call Syntax : @job_chain_steps
|
||||
-- Last Modified: 26/10/2011
|
||||
-- -----------------------------------------------------------------------------------
|
||||
SET LINESIZE 200
|
||||
COLUMN owner FORMAT A10
|
||||
COLUMN chain_name FORMAT A15
|
||||
COLUMN step_name FORMAT A15
|
||||
COLUMN program_owner FORMAT A10
|
||||
COLUMN program_name FORMAT A15
|
||||
|
||||
SELECT owner,
|
||||
chain_name,
|
||||
step_name,
|
||||
program_owner,
|
||||
program_name,
|
||||
step_type
|
||||
FROM dba_scheduler_chain_steps
|
||||
ORDER BY owner, chain_name, step_name;
|
||||
Reference in New Issue
Block a user