• <ul id="mayc0"></ul>
    <ul id="mayc0"><center id="mayc0"></center></ul>
    <strike id="mayc0"><input id="mayc0"></input></strike>
    <ul id="mayc0"></ul>
  • 始創于2000年 股票代碼:831685
    咨詢熱線:0371-60135900 注冊有禮 登錄
    • 掛牌上市企業
    • 60秒人工響應
    • 99.99%連通率
    • 7*24h人工
    • 故障100倍補償
    您的位置: 網站首頁 > 幫助中心>文章內容

    Oracle教程:select 操作產生的 redo

    發布時間:  2012/8/26 16:06:44

    數據庫版本:
    Oracle Database 10g Enterprise Edition Release 10.1.0.3.0


    創建測試表:
    SQL> create table a  as select * from all_objects  ;
    Table created.
    -
     


    SQL> set autotrace on statistics ;

    插入數據(hint append):

    SQL> insert /*+ append */ into a select * from all_objects ;
    9891 rows created.

    Statistics
    ----------------------------------------------------------
            302  recursive calls
            137  db block gets
           6040  consistent gets
              0  physical reads
        1055332  redo size
            627  bytes sent via SQL*Net to client
            558  bytes received via SQL*Net from client
              3  SQL*Net roundtrips to/from client
              1  sorts (memory)
              0  sorts (disk)
           9891  rows processed
    SQL> commit ;
    Commit complete.

    第一次查詢數據:
    SQL> select count(*) from a ;
      COUNT(*)
    ----------
         19782

    Statistics
    ----------------------------------------------------------
              0  recursive calls
              1  db block gets
            255  consistent gets
            248  physical reads
      168  redo size    ---------------------------------> ???產生redo???
            395  bytes sent via SQL*Net to client
            507  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed


    第二次查詢:

    SQL> select count(*) from a ;
      COUNT(*)
    ----------
         19782

    Statistics
    ----------------------------------------------------------
              0  recursive calls
              0  db block gets
            252  consistent gets
              1  physical reads
        0 redo size      
            395  bytes sent via SQL*Net to client
            507  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed


    =================================================
    如上所示,為什么在查詢的時候會產生 redo ? 產生的redo 到底是做什么的?
    =================================================
    ----

    取消 hint append 插入數據,第一次查詢不會產生redo

    SQL> insert into a select * from a ;

    19782 rows created.


    Statistics
    ----------------------------------------------------------
            112  recursive calls
          21100  db block gets
            699  consistent gets
              0  physical reads
        7149196  redo size
            642  bytes sent via SQL*Net to client
            534  bytes received via SQL*Net from client
              3  SQL*Net roundtrips to/from client
              1  sorts (memory)
              0  sorts (disk)
          19782  rows processed

    SQL>
    SQL>
    SQL> select count(*) from a ;

      COUNT(*)
    ----------
         39564


    Statistics
    ----------------------------------------------------------
              0  recursive calls
              0  db block gets
            502  consistent gets
              0  physical reads
              0  redo size
            395  bytes sent via SQL*Net to client
            507  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed
    ---------------------------------------------------

    對表做了truncate 操作后,第一次查詢也出現 redo

    SQL> truncate table a ;

    Table truncated.

    SQL>
    SQL> select count(*) from a;

      COUNT(*)
    ----------
             0


    Statistics
    ----------------------------------------------------------
              1  recursive calls
              1  db block gets
              6  consistent gets
              0  physical reads
           96  redo size
            392  bytes sent via SQL*Net to client
            507  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed

    SQL>

    ----------------
    簡單的說,在Oracle的block上都有活動事務的標志的,如果一個事務commit后,由于某些block在commit之前已經寫回datafile, 或者事務影響到的block數過多,則commi的時候只會清理undo segment header中的事務表信息,data block上的事務標志不會清除,否則代價過高。那么在一些讀取這些block時,需要將這些事務標志進行清除,就是延遲塊清除
    -------------------------
    這個在用append引語的時候才會產生select的redo日志,說明在提交前已經把數據塊給寫了,也進一步說明了直插的模式,就是不走緩存,直接寫數據塊和回滾快。滿足延遲塊清除的第一個條件,就是還沒提交,數據已經寫了。
    ---------------------------
    ====================================
    在做個測試如下:
    ====================================

    SQL> insert into a
      2  select * from a ;

    129103 rows created.


    Statistics
    ----------------------------------------------------------
            489  recursive calls
         137442  db block gets
           4058  consistent gets
           1516  physical reads
       46645744  redo size
            643  bytes sent via SQL*Net to client
            534  bytes received via SQL*Net from client
              3  SQL*Net roundtrips to/from client
              1  sorts (memory)
              0  sorts (disk)
         129103  rows processed

    SQL> alter system checkpoint ;

    System altered.

    SQL>
    SQL> select count(*) from a ;

      COUNT(*)
    ----------
        258206


    Statistics
    ----------------------------------------------------------
              0  recursive calls
              0  db block gets
           3241  consistent gets
           2790  physical reads
              0  redo size
            395  bytes sent via SQL*Net to client
            507  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed

    SQL> commit ;

    Commit complete.

    SQL> select count(*) from a ;

      COUNT(*)
    ----------
        258206


    Statistics
    ----------------------------------------------------------
              0  recursive calls
              0  db block gets
           4857  consistent gets
           2796  physical reads
          116484  redo size ------------------------------------> 第一次查詢redo產生 (延遲塊清除)
            395  bytes sent via SQL*Net to client
            507  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed

    SQL> select count(*) from a ;

      COUNT(*)
    ----------
        258206


    Statistics
    ----------------------------------------------------------
              0  recursive calls
              0  db block gets
           3241  consistent gets
           2746  physical reads
              0  redo size       
           395  bytes sent via SQL*Net to client
            507  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed

    SQL>

    -------------------
    說白了就是數據塊上的信息在前面還沒來得及清理,select來幫它清理一下,既然select對數據塊做了操作了,自然就要寫redo了。
     


    本文出自:億恩科技【www.vbseamall.com】

    服務器租用/服務器托管中國五強!虛擬主機域名注冊頂級提供商!15年品質保障!--億恩科技[ENKJ.COM]

  • 您可能在找
  • 億恩北京公司:
  • 經營性ICP/ISP證:京B2-20150015
  • 億恩鄭州公司:
  • 經營性ICP/ISP/IDC證:豫B1.B2-20060070
  • 億恩南昌公司:
  • 經營性ICP/ISP證:贛B2-20080012
  • 服務器/云主機 24小時售后服務電話:0371-60135900
  • 虛擬主機/智能建站 24小時售后服務電話:0371-60135900
  • 專注服務器托管17年
    掃掃關注-微信公眾號
    0371-60135900
    Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權所有  地址:鄭州市高新區翠竹街1號總部企業基地億恩大廈  法律顧問:河南亞太人律師事務所郝建鋒、杜慧月律師   京公網安備41019702002023號
      0
     
     
     
     

    0371-60135900
    7*24小時客服服務熱線