I need to change the job interval to run once after midnight.
Currently the interval is :
start_date => systimestamp,
repeat_interval => 'FREQ=MINUTELY; INTERVAL=5'
I plan to change it to
start_date => systimestamp,
repeat_interval => 'FREQ=DAILY; INTERVAL=( TRUNC(sysdate) + 1 ) +( 2 /24/60 ) '
Job should run 2 minutes past midnight..
Is this correct?