Special schedule for a job

LCM

Member
Hi All,

I have a DBMS job scheduled to ran every hour (Repeat Interval => FREQ=MINUTELY; INTERVAL=60). I don't want this job to run on Friday 7 AM alone. That run alone should be missed.

Is it possible to schedule the job as required? Kindly suggest
 
The simplest solution would be to check current time in the executed program itself and exit immediately if it's Friday around 07:00.
 
Back
Top