Database Jobs are not working [message #149141] |
Wed, 30 November 2005 05:35 |
guyj
Messages: 31 Registered: September 2005
|
Member |
|
|
Hi All
We have a database with 16 backend jobs which are running under deferent users. Those jobs are not working now, but earlier those were working perfectly. Jobs are not broken either. I couldn’t find any errors in the alert log or any trace files regarding this issue.
Our database version is 9.0.1.4 and we have set the job_queue_processes into 3.
Please help me to solve this issue.
|
|
|
Re: Database Jobs are not working [message #149165 is a reply to message #149141] |
Wed, 30 November 2005 07:10 |
Frank Naude
Messages: 4587 Registered: April 1998
|
Senior Member |
|
|
Query DBA_JOBS and DBA_JOBS_RUNNING to see if you jobs are executed or not:
select job, schema_user schema,
to_char(last_date, 'DD-MON-YY HH24:MI') "LAST_RUN",
to_char(next_date, 'DD-MON-YY HH24:MI') "NEXT_RUN",
failures,
decode(broken, 'N', 'NO', 'Y', 'YES', broken) broken, what
from sys.dba_jobs
/
select sid, job, failures, last_date, last_sec, this_date, this_sec
from sys.dba_jobs_running
/
Best regards.
Frank
|
|
|
Re: Database Jobs are not working [message #149257 is a reply to message #149165] |
Wed, 30 November 2005 20:44 |
guyj
Messages: 31 Registered: September 2005
|
Member |
|
|
Hi Frank,
Thanks for the Reply.I went through those views. One job is marked as broken. And others are not broken but next date showed as 05/31/2004. Then I rescheduled those, but no success. I queried dba_jobs_running and nothing was there.
|
|
|
|
|