Has anyone had any issues with the start_date in SQL developer when the job won't execute on the start_date
provided in the schedule, but it runs fine against the repeat interval?
My understanding was that the start_date
would be the first execution and then subsequent executions use the repeat interval.
BEGIN
DBMS_SCHEDULER.CREATE_SCHEDULE (
repeat_interval => 'FREQ=DAILY',
start_date => TO_TIMESTAMP_TZ('2018-07-23 10:00:00.000000000 +01:00','YYYY-MM-DD HH24:MI:SS.FF TZR'),
comments => 'Created by DBA',
schedule_name => '"TEST"');
END;