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_Queue_Interval Parameters

Re: Job_Queue_Interval Parameters

From: Connor McDonald <connor_mcdonald_at_yahoo.com>
Date: Tue, 18 Jan 2005 09:04:42 +0800
Message-ID: <41EC60AA.23E1@yahoo.com>


bionicbabes_at_hotmail.com wrote:
>
> Hello,
>
> I have a job auto_access the interval parameter is currently
> SYSDATE+0.5/24. This runs the job every 30 minutes 24 hours per day.
> How can I make this job start at 09:00 (every 30 mins) finish 18:30?
> Many Thanks
>
> Rebecca

if your job is (say) "my_proc;" then change it to

"if to_char(sysdate,'HH24MI') between '0900' and '1830' then

    my_proc;
 end if;"

hth
connor

-- 
Connor McDonald
Co-author: "Mastering Oracle PL/SQL - Practical Solutions"
ISBN: 1590592174

web: http://www.oracledba.co.uk
web: http://www.oaktable.net
email: connor_mcdonald_at_yahoo.com

Coming Soon! "Oracle Insight - Tales of the OakTable"

"GIVE a man a fish and he will eat for a day. But TEACH him how to fish,
and...he will sit in a boat and drink beer all day"

------------------------------------------------------------
Received on Mon Jan 17 2005 - 19:04:42 CST

Original text of this message

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