Hi,
I have a problem with my scheduler.It needs to be scheduled ever day 7.30 AM, 11.30 AM, 15.30, 18.45 EST
Below is the script i created. but it is executing at 7:30,7:45,11:30,11:45,15:30,15:45,18:30,18:45 EST. please advise how to get this.
Begin
DBMS_SCHEDULER.SET_ATTRIBUTE('JOB_NAME',
'repeat_interval',
'FREQ=DAILY;BYHOUR=07,11,15,18;BYMINUTE=30,30,30,45'
);
END;
Regards,
Phani.