I created jobs like this.
DECLARE
X NUMBER;
BEGIN
SYS.DBMS_JOB.SUBMIT
( job => X
,what => 'PROCEDURE_CATCH;'
,next_date => to_date('16/05/2018 16:07:00','dd/mm/yyyy hh24:mi:ss')
,interval => 'SYSDATE + 1 / 24 / 12'
,no_parse => FALSE
);
SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
COMMIT;
END;
/
But after sometime maybe 10 20 minutes , I refreshed the job and I saw that Last date,this date, next date,this sec and next sec didn't change, they stayed as they were.
What is the problem here ?