Hi,
i have below scheduler code written on oracle 10g to run.
Code:
BEGIN
DBMS_SCHEDULER.CREATE_JOB
(
job_name =>'TESTING_JOB',
job_type =>'STORED_PROCEDURE',
job_action =>'TEST1',
start_date => SYSDATE,
repeat_interval => 'FREQ=DAILY;INTERVAL=1;BYHOUR=0;BYMINUTE=0;BYSECOND=0',
enabled => TRUE
);
END;
scheduler is calling a procedure test1() just makes an entry to table.
i want to run the scheduler now (i.e first time should be fired time) and daily morning 12:00 AM.
so i have written the above code, after i run the scheduler successfully.
i tested in the table which does not make any entry into it, this means it is not runned for the first time.