scheduler information for running jobs Scripts (10g)

-------------------------------------------------------------
-- Description  : Displays scheduler information for running jobs.
-- Requirements : Access to the DBA views.
-- Call Syntax  : @jobs_running
--------------------------------------------------------- 
 
SET LINESIZE 200

COLUMN owner FORMAT A20

SELECT owner,
       job_name,
       running_instance,
       elapsed_time
FROM   dba_scheduler_running_jobs
ORDER BY owner, job_name;

No comments:

Query to get the package specification

In Oracle E-Business Suite R12.2.10 , if you want to download (export) a package’s source code (specification and body), you can do it usin...