I want to schedule a job which should run 09:10AM and 11:45AM on every Saturday.
I am trying to create a job dbms_scheduler.create_job
with following interval
,repeat_interval => 'FREQ=WEEKLY; BYDAY=THU; BYHOUR=9,11; BYMINUTE=10,45; BYSECOND=0'
but looks like its creating 4 jobs which will run every Thursday at 9 and 11 hours on 30 and 45 minutes.
Is there any way to create the job interval which will run the job on 9:10 and 11:45 on every Saturday?