How to schedule a job to run hourly except a particular interval ?
I tried it in Designer > Edit Schedule, but there is no such option to put exception interval.
Checked both in OIM Version 8.1.5 and 9.1.1
How to schedule a job to run hourly except a particular interval ?
I tried it in Designer > Edit Schedule, but there is no such option to put exception interval.
Checked both in OIM Version 8.1.5 and 9.1.1
Maybe you could manipulate this using the Condition statement of the process plan.
select top 1 UID_Person from Person where DATEPART(hour, GETUTCDATE()) NOT IN (10,11,16)
To avoid overpopulating the schedules, I propose a daily schedule with a list of start times as described here https://support.oneidentity.com/technical-documents/identity-manager/9.1.1/operational-guide…
Hi Aqueel,
not knowing your exception interval I assume you want to run the hourly schedule during usual working hours the only thing you can do is to create 10 daily schedules each running at a certain time (8:00 am, 9:00am ... 4:00pm ).
Regards,
Tino
Maybe you could manipulate this using the Condition statement of the process plan.
select top 1 UID_Person from Person where DATEPART(hour, GETUTCDATE()) NOT IN (10,11,16)
Hi Niels de Groot ,
Thanks for the response, let me give it a try and let you know.
Hi Niels de Groot ,
Thanks for the response, let me give it a try and let you know.