Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

DBMS_SCHEDULER. How do I set frequency to run every 30 minutes

Keith JamiesonJul 19 2007 — edited Jul 19 2007
Hi,
I need this job to run every 30 minutes, lets say on 15 minutes and 45 minutes past the hour. What are the necessray changes. I have looked through the docs and have been getting errors when I try and change the line repeat_interval.

begin
dbms_scheduler.create_schedule(
schedule_name =>'HOTLIST_GENERATION',
start_date =>to_date('01-MAR-2007 02:30','DD-MON-YYYY HH24:MI'),
repeat_interval =>'FREQ=Hourly',
end_date =>NULL,
comments =>'Schedule for Hotlist generation');
end;
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 16 2007
Added on Jul 19 2007
2 comments
1,589 views