Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Job_Queue_Interval Parameters
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