Reputation: 880
I'm wanting to create an escalation to be scheduled every 12 hours at 10 AM. However, the form for selecting the schedule time is as follows:
Every _ hour(s) on minute _
It doesn't specify what the starting hour is so how can I do that?
Thanks
Upvotes: 0
Views: 1424
Reputation: 2715
Option 1: Create a SQL where clause that schedules to run itself at certain times only. The escalation would have to run more frequently to hit at 10AM and 10PM. So, if your interval of 10AM can have a little slack with as 9:55AM or 10:15AM the SQL method should work.
Option 2: Create two entries for daily. One for 10AM and another for 10PM.
Upvotes: 1
Reputation: 11
If I correctly understand your requirement - you want to run the job daily 2 times at 10:00 AM and 10:00 PM. What I will do in this situation is - Schedule the job for every "720 minutes" and reload the cron at time 10:00 AM , if you preview you will see the result desired by you.
Upvotes: 1