How to schedule a job which needs to run evry day 1(AM) o clk?
639811Aug 2 2008 — edited Aug 2 2008begin
DBMS_SCHEDULER.create_job (
job_name=> 'BJAZPROPMAINTAIN',
job_type=> 'PLSQL_BLOCK',
job_action=> schemaname.schedule_procedure;',
start_date=> '02-aug-08 01:00:00 PM',
repeat_interval=> 'FREQ=DAILY; BYHOUR=01',
enabled =>TRUE,
auto_drop=>FALSE);
end;
Hi all,
i want to schedule a job which needs to be run every day one o clock early morning i haven't set the job_scheduler before this. by searching thru net and prev scheduler coding i have written the above code here for running evry day early morning 1 o clock i m little bit of confused in the time
repeat_interval=>'FREQ=DAILY;BYHOUR=01'; whether is is correct one or wrong?
and also there are some other job is scheduled in the same time . will it create any problem of executing at the sametime or we need to change the timing of 1:15 like that?
please advise me..