Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: DBMS_JOB
Here's a script I use to view jobs:
set linesize 132
select to_char(job,'FM990') job,
substr(schema_user,1,6) owner,
substr(what,1,20) procedure,
to_char(last_date,'MM/DD/YY HH24:MI') "LAST RUN",
decode(this_date,null,
' '||to_char(next_date,'MM/DD/YY HH24:MI'),
'*'||to_char(this_date,'MM/DD/YY HH24:MI')) "*RUNNING/NEXT",
rpad(Broken,4) Brkn,
rpad(to_char(failures,'FM90'),4) fail,
substr(interval,1,30) interval
from dba_jobs
/
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Mike J Kurth
INET: Mike.J.Kurth_at_aexp.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Fri Jun 29 2001 - 17:03:19 CDT