Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Job Wont Run - Cant See Reason Why...

Re: Job Wont Run - Cant See Reason Why...

From: NetComrade <andreyNSPAM_at_bookexchange.net>
Date: Mon, 14 Apr 2003 14:21:47 GMT
Message-ID: <3e9ac3f1.4224607203@nyc.news.speakeasy.net>


check job_queue_processes parameter

On 14 Apr 2003 06:55:52 -0700, tjm_at_runtime.dk (TimMcConechy) wrote:

>I wrote some code to make it easier to submit a job...
>lFunction:='WorkFlow.AutoSend();';
>
>select AutoSend,AutoSendTime into lAutoSend,lAutoSendTime from
>WORKFLOW_CONFIG;
>IF lAutoSend=1 THEN
>--find the job id...
>for x in (select job from dba_jobs where what=lFunction)
>loop
>--if found delete it
> DBMS_JOB.REMOVE(x.job);
>end loop;
> --submit the job under the new timing factor..
>DBMS_JOB.SUBMIT(jobid,lFunction,SYSDATE , 'SYSDATE +
>'||to_char(lAutoSendTime)||'/1440');
>END IF;
>
>This seems to work ok...When I look in DBA_JOBS I see that everything
>appears ok..
>SQL> SELECT JOB, SUBSTR(WHAT,1,35), NEXT_DATE,BROKEN,INTERVAL FROM
>DBA_JOBS;
>
> JOB SUBSTR(WHAT,1,35) NEXT_DATE B
>---------- ----------------------------------- --------- -
>INTERVAL
>--------------------------------------------------------------------------------
> 5 WorkFlow.AutoSend(); 14/APR/03 N
>SYSDATE + 1/1440
>
>
>But the job simply will not run...If I call..
> dbms_job.run(5);
>Then it runs but otherwsie not. The failures column is at 0 and the
>broken column is at N also last_date,last_sec is never updated....
>
>BR
>Tim

.......
We use Oracle 8.1.7.4 on Solaris 2.7 boxes remove NSPAM to email Received on Mon Apr 14 2003 - 09:21:47 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US