 |
|
Oracle Tips by Burleson |
Chapter 2 -
Configuring Oracle Job Scheduling
Overview and
Examples of dbms_job Functions
COLUMN job FORMAT 999
COLUMN what FORMAT A55
COLUMN interval FORMAT A30
select
job,
what,
next_date,
interval
from
user_jobs
SEE CODE DEPOT FOR FULL SCRIPT
order by
next_date
;
The output generated by the jobs.sql script is
displayed below.
SQL> @jobs job_user
|
Download your Oracle scripts now:
www.oracle-script.com
The
definitive Oracle Script collection for every Oracle professional DBA
|
|