I have a created a job which runs on everyday at 09:00:00.
Below is the snippet i have used to create a job :
BEGIN
Dbms_Scheduler.create_job(
job_name => 'PROECSS_STATE_ARCH'
,job_type => 'STORED_PROCEDURE'
,job_action => 'TEST' -- Procedure Name
,start_date => SYSDATE 9:00:00
,repeat_interval => 'freq=DAILY'
,enabled => TRUE
,comments => 'job schedule for archiving process_state');
END;
sole purpose of this is to run a stored procedure 'TEST' on everyday at 09:00:00
how to add this job to scheduler to invoke this job automatically on everyday? Can anyone please tell me ??