Skip to main content
Solved

How to process a scheduled database task n times per day


Forum|alt.badge.img+23
  • Superhero (Customer)
  • 1169 replies

Dear community,

i wonder if I can run a scheduled database task 3 times a day and during the week.

For example:

From mondays to fridays

and every day at 6:00, 12:00 and 5:00 oโ€™clock

Best answer by dsj

Link wrote:

Hi @NickPorter 

we have about 7 companies worldwide and if everybody needs 3 iterations at different times, we will have 21 jobs. ๐Ÿ˜€

Then I will try to standardise the scheduled times.

Thank you a lot. ๐Ÿ‘๐Ÿผ

 

 

 

I think you donโ€™t need to schedule 21 jobs ;)

This formula should work for your need to schedule it on 6:30, 12:00 and 17:15 every weekday

FREQ=DAILY; BYTIME=063000,120000,171500; BYDAY=MON,TUE,WED,THU,FRI

 

For more info, refer https://docs.oracle.com/en/database/oracle/oracle-database/12.2/arpls/DBMS_SCHEDULER.html#GUID-A24DEB5D-2EAF-4C0B-8715-30DC947B3F87

Hope it helps!

Damith

View original
Did this topic help you find an answer to your question?

9 replies

dsj
Superhero (Partner)
Forum|alt.badge.img+22
  • Superhero (Partner)
  • 843 replies
  • February 1, 2024

Hi @Link 

 

You can choose a custom schedule in the Schedule database task and give the DBMS Scheduler expression for your requirement.

I think this expression would work for you :)

FREQ=DAILY;BYHOUR=6,12,17;BYMINUTE=0;BYDAY=MON,TUE,WED,THU,FRI

 

Check this topic for some good discussion on custom expressions in scheduled tasks

Scheduled Database Task between certain times | IFS Community

 

Hope it helps!

Damith


Forum|alt.badge.img+23
  • Author
  • Superhero (Customer)
  • 1169 replies
  • February 1, 2024

Hi @dsj 

thank you a lot.

What to do if I have times like 6:30, 12:00 and 17:15?

Do I need to create 3 database tasks?


NickPorter
Superhero (Customer)
Forum|alt.badge.img+18
  • Superhero (Customer)
  • 326 replies
  • February 1, 2024

For this kind of scheduling where the timing is not equally spread out in the day (e.g. at specific times and not every x hours), I would schedule them as 3 different tasks.  This is simple to do and will give you the control you need, as well as making it easiest to adjust just one of the jobs in the future.

Nick


Forum|alt.badge.img+23
  • Author
  • Superhero (Customer)
  • 1169 replies
  • February 1, 2024
NickPorter wrote:

For this kind of scheduling where the timing is not equally spread out in the day (e.g. at specific times and not every x hours), I would schedule them as 3 different tasks.  This is simple to do and will give you the control you need, as well as making it easiest to adjust just one of the jobs in the future.

Nick

Hi @NickPorter,

yes, I agree. But you will have too many jobs to manage. 


NickPorter
Superhero (Customer)
Forum|alt.badge.img+18
  • Superhero (Customer)
  • 326 replies
  • February 1, 2024
Link wrote:
NickPorter wrote:

For this kind of scheduling where the timing is not equally spread out in the day (e.g. at specific times and not every x hours), I would schedule them as 3 different tasks.  This is simple to do and will give you the control you need, as well as making it easiest to adjust just one of the jobs in the future.

Nick

Hi @NickPorter,

yes, I agree. But you will have too many jobs to manage. 

Well, that really depends on how many of these you will have that need to run at irregular times.  In your example your asked about there would be only 3 jobs (rather than 1) so that is still the approach I would recommend. 

In reality I would be really surprised if you truly have such a large number of jobs that MUST run at irregular times during a day that requires this kind of split into different jobs.  If so, I would really try to align the execution times to specific minutes and implement similar to what @dsj suggested.  But again, I really canโ€™t foresee why you would get to โ€˜too many jobs to manageโ€™ using this suggested approach if you used it when you needed to, and generally you wouldn't likely need to manage them often after creation anyway.

HTH,

Nick


Forum|alt.badge.img+23
  • Author
  • Superhero (Customer)
  • 1169 replies
  • February 1, 2024

Hi @NickPorter 

we have about 7 companies worldwide and if everybody needs 3 iterations at different times, we will have 21 jobs. ๐Ÿ˜€

Then I will try to standardise the scheduled times.

Thank you a lot. ๐Ÿ‘๐Ÿผ

 

 


dsj
Superhero (Partner)
Forum|alt.badge.img+22
  • Superhero (Partner)
  • 843 replies
  • Answer
  • February 1, 2024
Link wrote:

Hi @NickPorter 

we have about 7 companies worldwide and if everybody needs 3 iterations at different times, we will have 21 jobs. ๐Ÿ˜€

Then I will try to standardise the scheduled times.

Thank you a lot. ๐Ÿ‘๐Ÿผ

 

 

 

I think you donโ€™t need to schedule 21 jobs ;)

This formula should work for your need to schedule it on 6:30, 12:00 and 17:15 every weekday

FREQ=DAILY; BYTIME=063000,120000,171500; BYDAY=MON,TUE,WED,THU,FRI

 

For more info, refer https://docs.oracle.com/en/database/oracle/oracle-database/12.2/arpls/DBMS_SCHEDULER.html#GUID-A24DEB5D-2EAF-4C0B-8715-30DC947B3F87

Hope it helps!

Damith


dsj
Superhero (Partner)
Forum|alt.badge.img+22
  • Superhero (Partner)
  • 843 replies
  • February 1, 2024

If you need to validate the scheduler formula, you can use below simple script which will output next 10 run date/times

DECLARE
  start_date        TIMESTAMP;
  return_date_after TIMESTAMP;
  next_run          TIMESTAMP;
BEGIN
  start_date        := SYSTIMESTAMP;
  return_date_after := start_date;
  FOR i IN 1 .. 10 LOOP
    DBMS_SCHEDULER.EVALUATE_CALENDAR_STRING('FREQ=DAILY; BYTIME=063000,120000,171500; BYDAY=MON,TUE,WED,THU,FRI',
                                            start_date,
                                            return_date_after,
                                            next_run);
    DBMS_OUTPUT.PUT_LINE('Next Run: ' || next_run);
    return_date_after := next_run;
  END LOOP;
END;

 


Forum|alt.badge.img+23
  • Author
  • Superhero (Customer)
  • 1169 replies
  • February 2, 2024
dsj wrote:
Link wrote:

Hi @NickPorter 

we have about 7 companies worldwide and if everybody needs 3 iterations at different times, we will have 21 jobs. ๐Ÿ˜€

Then I will try to standardise the scheduled times.

Thank you a lot. ๐Ÿ‘๐Ÿผ

 

I think you donโ€™t need to schedule 21 jobs ;)

This formula should work for your need to schedule it on 6:30, 12:00 and 17:15 every weekday

FREQ=DAILY; BYTIME=063000,120000,171500; BYDAY=MON,TUE,WED,THU,FRI

 

For more info, refer https://docs.oracle.com/en/database/oracle/oracle-database/12.2/arpls/DBMS_SCHEDULER.html#GUID-A24DEB5D-2EAF-4C0B-8715-30DC947B3F87

Hope it helps!

Damith

 

 

Hi @dsj 

a very good idea. It is cool. ๐Ÿ˜„

Thank you again. 

 


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings