激情五月天婷婷,亚洲愉拍一区二区三区,日韩视频一区,a√天堂中文官网8

<ul id="buwfs"><strike id="buwfs"><strong id="buwfs"></strong></strike></ul>
    <output id="buwfs"></output>
  • <dfn id="buwfs"><source id="buwfs"></source></dfn>
      <dfn id="buwfs"><td id="buwfs"></td></dfn>
      <div id="buwfs"><small id="buwfs"></small></div>
      <dfn id="buwfs"><source id="buwfs"></source></dfn>
      1. <dfn id="buwfs"><td id="buwfs"></td></dfn>
        始創(chuàng)于2000年 股票代碼:831685
        咨詢熱線:0371-60135900 注冊(cè)有禮 登錄
        • 掛牌上市企業(yè)
        • 60秒人工響應(yīng)
        • 99.99%連通率
        • 7*24h人工
        • 故障100倍補(bǔ)償
        全部產(chǎn)品
        您的位置: 網(wǎng)站首頁(yè) > 幫助中心>文章內(nèi)容

        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)


        其中:
        ●job:輸出變量,是此任務(wù)在任務(wù)隊(duì)列中的編號(hào);
        ●what:執(zhí)行的任務(wù)的名稱及其輸入?yún)?shù);
        ●next_date:任務(wù)執(zhí)行的時(shí)間;
        ●interval:任務(wù)執(zhí)行的時(shí)間間隔。
        其中Interval這個(gè)值是決定Job何時(shí),被重新執(zhí)行的關(guān)鍵;當(dāng)interval設(shè)置為null時(shí),該job執(zhí)行結(jié)束后,就被從隊(duì)列中刪除。假如我們需要該job周期性地執(zhí)行,則要用‘sysdate+m’表示。如何更好地確定執(zhí)行時(shí)間的間隔需要我們掌握一個(gè)函數(shù)TRUNC。

        1.TRUNC(for dates)
        TRUNC函數(shù)為指定元素而截去的日期值。
        其具體的語(yǔ)法格式如下:
        TRUNC(date[,fmt])
        其中:
        date 一個(gè)日期值
        fmt 日期格式,該日期將由指定的元素格式所截去。忽略它則由最近的日期截去
        下面是該函數(shù)的使用情況:
        1)按年截尾
        select  TRUNC(TO_DATE('2008-03-01 08:23','yyyy-mm-dd hh:mi'),'yyyy')  from dual
        -----------------------------------------------------------
        2008-1-1
        2)按月截尾
        select  TRUNC(TO_DATE('2008-03-01 08:23','yyyy-mm-dd hh:mi'),'mm')  from dual
        --------------------------------------------------------
        2008-3-1
        3)按日截尾
        select  TRUNC(TO_DATE('2008-03-01 08:23','yyyy-mm-dd hh:mi'),'dd')  from dual
        ----------------------------------------------------------------------
        2008-3-1
        4)按時(shí)截尾
        select  TRUNC(TO_DATE('2008-03-01 08:23','yyyy-mm-dd hh:mi'),'hh')  from dual
        ----------------------------------------------------------------------
        2008-3-1 8:00:00
        5)按分截尾
        select  TRUNC(TO_DATE('2008-03-01 08:23','yyyy-mm-dd hh:mi'),'mi')  from dual
        ----------------------------------------------------------------------
        2008-3-1 8:23:00

        2.確定執(zhí)行時(shí)間間隔
        1) 每分鐘執(zhí)行
        Interval => TRUNC(sysdate,'mi') + 1 / (24*60) 或Interval => sysdate+1/1440
        2) 每天定時(shí)執(zhí)行
        例如:每天的凌晨2點(diǎn)執(zhí)行
        Interval => TRUNC(sysdate) + 1 +2 / (24)
        3) 每周定時(shí)執(zhí)行
        例如:每周一凌晨2點(diǎn)執(zhí)行
        Interval => TRUNC(next_day(sysdate,2))+2/24 --星期一,一周的第二天

        Interval => TRUNC(next_day(sysdate,'星期一'))+2/24
        4) 每月定時(shí)執(zhí)行
        例如:每月1日凌晨2點(diǎn)執(zhí)行
        Interval =>TRUNC(LAST_DAY(SYSDATE))+1+2/24
        5) 每季度定時(shí)執(zhí)行
        例如每季度的第一天凌晨2點(diǎn)執(zhí)行
        Interval => TRUNC(ADD_MONTHS(SYSDATE,3),'Q') + 2/24
        6) 每半年定時(shí)執(zhí)行
        例如:每年7月1日和1月1日凌晨2點(diǎn)
        Interval => ADD_MONTHS(trunc(sysdate,'yyyy'),6)+2/24
        7) 每年定時(shí)執(zhí)行
        例如:每年1月1日凌晨2點(diǎn)執(zhí)行
        Interval => ADD_MONTHS(trunc(sysdate,'yyyy'),12)+2/24


        3.實(shí)例
        這里提供了一個(gè)簡(jiǎn)單的例子,主要是完成在每一個(gè)時(shí)間間隔內(nèi)向一個(gè)表中插入一條記錄
          1)創(chuàng)建測(cè)試表 

         

        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]-->  


          
          2)創(chuàng)建一個(gè)自定義過(guò)程 

        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]-->  


          
          過(guò)程已創(chuàng)建。 
          
          3)創(chuàng)建JOB 

        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; 


          
          PL/SQL   JOB已成功完成。 

         

         

         

         

        ----------------------------------------------

         

         


        --1 、建立一個(gè)存儲(chǔ)過(guò)程,轉(zhuǎn)歷史并刪除,假設(shè)表名名:test,歷史表:test_his(兩表結(jié)構(gòu)一樣):如

        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]

      2. 您可能在找
      3. 億恩北京公司:
      4. 經(jīng)營(yíng)性ICP/ISP證:京B2-20150015
      5. 億恩鄭州公司:
      6. 經(jīng)營(yíng)性ICP/ISP/IDC證:豫B1.B2-20060070
      7. 億恩南昌公司:
      8. 經(jīng)營(yíng)性ICP/ISP證:贛B2-20080012
      9. 服務(wù)器/云主機(jī) 24小時(shí)售后服務(wù)電話:0371-60135900
      10. 虛擬主機(jī)/智能建站 24小時(shí)售后服務(wù)電話:0371-60135900
      11. 專注服務(wù)器托管17年
        掃掃關(guān)注-微信公眾號(hào)
        0371-60135900
        Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權(quán)所有  地址:鄭州市高新區(qū)翠竹街1號(hào)總部企業(yè)基地億恩大廈  法律顧問(wèn):河南亞太人律師事務(wù)所郝建鋒、杜慧月律師   京公網(wǎng)安備41019702002023號(hào)
          0
         
         
         
         

        0371-60135900
        7*24小時(shí)客服服務(wù)熱線