Oracle日志定期清理存儲(chǔ)過(guò)程 |
發(fā)布時(shí)間: 2012/8/20 17:24:53 |
常要Oracle數(shù)據(jù)庫(kù)定時(shí)的自動(dòng)執(zhí)行一些腳本,或做數(shù)據(jù)庫(kù)備份,或做數(shù)據(jù)的提煉,或做數(shù)據(jù)庫(kù)的性能優(yōu)化,包括重建索引等等的工作,這時(shí)需要用到一個(gè)函數(shù)dbms_job.submit,來(lái)完成Oracle定時(shí)器Job時(shí)間的處理上。使用dbms_job.submit這個(gè)函數(shù),我們只需要考慮兩個(gè)事情:安排某一任務(wù),和定制一個(gè)執(zhí)行任務(wù)的時(shí)間點(diǎn)。但最重要也是最棘手的事情,我認(rèn)為還是確定一個(gè)執(zhí)行任務(wù)的時(shí)間點(diǎn)。時(shí)間點(diǎn)確定了,其他的事情就好辦了。下面是函數(shù)dbms_job.submit使用方法: Java代碼 <!--[if !supportLists]-->1. <!--[endif]-->dbms_job.submit( job out binary_integer, <!--[if !supportLists]-->2. <!--[endif]-->what in archar2, <!--[if !supportLists]-->3. <!--[endif]-->next_date in date, <!--[if !supportLists]-->4. <!--[endif]-->interval in varchar2, <!--[if !supportLists]-->5. <!--[endif]-->no_parse in boolean)
1.TRUNC(for dates) 2.確定執(zhí)行時(shí)間間隔 Interval => TRUNC(next_day(sysdate,'星期一'))+2/24
Java代碼 <!--[if !supportLists]-->1. <!--[endif]--> <!--[if !supportLists]-->2. <!--[endif]--> SQL> create table test(id number,cur_time date); <!--[if !supportLists]-->3. <!--[endif]--> 表已創(chuàng)建。 <!--[if !supportLists]-->4. <!--[endif]-->----建sequence <!--[if !supportLists]-->5. <!--[endif]-->CREATE SEQUENCE test_sequence <!--[if !supportLists]-->6. <!--[endif]-->INCREMENT BY 1 -- 每次加幾個(gè) <!--[if !supportLists]-->7. <!--[endif]--> START WITH 1 -- 從1開始計(jì)數(shù) <!--[if !supportLists]-->8. <!--[endif]--> NOMAXVALUE -- 不設(shè)置最大值 <!--[if !supportLists]-->9. <!--[endif]--> NOCYCLE -- 一直累加,不循環(huán) <!--[if !supportLists]-->10. <!--[endif]--> CACHE 10 ;
--建觸發(fā)器代碼為: Java代碼 <!--[if !supportLists]-->1. <!--[endif]-->create or replace trigger tri_test_id <!--[if !supportLists]-->2. <!--[endif]--> before insert on test --test 是表名 <!--[if !supportLists]-->3. <!--[endif]--> for each row <!--[if !supportLists]-->4. <!--[endif]-->declare <!--[if !supportLists]-->5. <!--[endif]--> nextid number; <!--[if !supportLists]-->6. <!--[endif]-->begin <!--[if !supportLists]-->7. <!--[endif]--> IF :new.id IS NULLor :new.id=0 THEN --id是列名 <!--[if !supportLists]-->8. <!--[endif]--> select test_sequence.nextval --SEQ_ID正是剛才創(chuàng)建的 <!--[if !supportLists]-->9. <!--[endif]--> into nextid <!--[if !supportLists]-->10. <!--[endif]--> from sys.dual; <!--[if !supportLists]-->11. <!--[endif]--> :new.id:=nextid; <!--[if !supportLists]-->12. <!--[endif]--> end if; <!--[if !supportLists]-->13. <!--[endif]-->end tri_test_id; <!--[if !supportLists]-->14. <!--[endif]-->
Java代碼 <!--[if !supportLists]-->1. <!--[endif]-->SQL> create or replace procedure proc_test as <!--[if !supportLists]-->2. <!--[endif]--> begin <!--[if !supportLists]-->3. <!--[endif]--> insert into test(cur_time) values(sysdate); <!--[if !supportLists]-->4. <!--[endif]--> end; <!--[if !supportLists]-->5. <!--[endif]--> / <!--[if !supportLists]-->6. <!--[endif]-->
Java代碼 <!--[if !supportLists]-->1. <!--[endif]-->SQL> declare job1 number; <!--[if !supportLists]-->2. <!--[endif]--> begin <!--[if !supportLists]-->3. <!--[endif]--> dbms_job.submit(job1,'proc_test;',sysdate,'sysdate+1/1440');--每天1440分鐘,即一分鐘運(yùn)行test過(guò)程一次 <!--[if !supportLists]-->4. <!--[endif]--> end;
----------------------------------------------
CREATE OR REPLACE PROCEDURE delhisdata AS BEGIN INSERT INTO test_his SELECT * FROM test WHERE ins_date < trunc(add_months(SYSDATE, -12)); DELETE FROM test t WHERE ins_date < trunc(add_months(SYSDATE, -12)); COMMIT; EXCEPTION WHEN OTHERS THEN ROLLBACK; END; / --1、數(shù)據(jù)庫(kù)中建立一個(gè)JOB對(duì)存儲(chǔ)過(guò)程進(jìn)行調(diào)用,并且每月執(zhí)行一次, DECLARE jobno NUMBER; BEGIN DBMS_JOB.SUBMIT(JOB => jobno, /*自動(dòng)生成JOB_ID*/ WHAT => 'delhisdata;', /*需要執(zhí)行的過(guò)程或SQL語(yǔ)句*/ NEXT_DATE => TRUNC(SYSDATE + 1) + 2 / 24, /*初次執(zhí)行時(shí)間*/ INTERVAL => 'TRUNC(add_months(SYSDATE,1))+2/24'); /*執(zhí)行周期*/ COMMIT; END; / 本文出自:億恩科技【mszdt.com】 服務(wù)器租用/服務(wù)器托管中國(guó)五強(qiáng)!虛擬主機(jī)域名注冊(cè)頂級(jí)提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM] |