I created job in Oracle. I set interval properly. But the job started automatically after I created it .
DECLARE
X NUMBER;
BEGIN
SYS.DBMS_JOB.SUBMIT (
job => X
,what => 'MISSING_REVENUE_EXPENSE_ICR;'
,next_date => to_date('29/04/2015 04:00:00','dd/mm/yyyy hh24:mi:ss')
,interval => '(trunc(sysdate)+1)+4/24'
,no_parse => FALSE );
SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
COMMIT;
END;
Why this happened? Tell me some fix for this issue.