Create a simple oracle timer job

The following is the configuration sql for the basic properties of creating a timer job
begin
sys.dbms_scheduler.create_job(
job_name => 'test',
job_type => 'STORED_PROCEDURE',
job_aciotn => 'pro_test',
repeat_interval => 'Freq=Daily;Interval=1'
);
end;

 

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326791970&siteId=291194637