Oracle 作業的建立與檢視

2021-08-25 10:11:59 字數 463 閱讀 6484

oracle提供了dbms_scheduler包用於建立和管理作業,同時提供了dba_scheduler_jobs(該檢視在一般使用者和sys使用者下都可使用)用於查詢作業詳情。

建立簡單的作業可以使用如下語句,複雜情況可以使用oracle 10g自帶的em去處理。

-- 建立排程作業 begin sys.dbms_scheduler.create_job( job_name => jack_inte***ce_job', job_type => 'plsql_block', job_action => 'begin jack_action; end;', repeat_interval => 'freq=hourly', start_date => systimestamp at time zone '+8:00', job_class => 'default_job_class', auto_drop => false, enabled => true ); end; /

Oracle 建立作業JOB的例子

1.plsql中學習job 學習job 建表 create table test job para date date commit insert into test job values sysdate commit select from test job 建立存貯過程 create orrep...

ORACLE 建立作業JOB例子

1.plsql中學習job 學習job 建表 create table test job para date date commit insert into test job values sysdate commit select from test job 建立存貯過程 create or re...

ORACLE 建立作業JOB例子

1.plsql中學習job 學習job 建表 create table test job para date date commit insert into test job values sysdate commit select from test job 建立存貯過程 create orrep...