ORACLE 物理讀 邏輯讀 一致性讀 當前模式讀總結淺析

迷倪小魏發表於2017-09-19

Oracle 物理讀 邏輯讀 一致性讀 當前模式讀總結淺析




  在ORACLE資料庫中有物理讀(Physical Reads)、邏輯讀(Logical Reads)、一致性讀(Consistant Get)、當前模式讀(DB Block Gets)等諸多概念,如果不理解或混淆這些概念的話,對你深入理解一些知識無疑是一個障礙,但是這些概念確實挺讓讓人犯暈的。下面我們總結、學習一下這方面的知識點。捋一捋他們的關係和特點,希望對你有所幫助。

 

物理讀(Physical Reads)

 

從磁碟讀取資料塊到記憶體的操作叫物理讀,當SGA裡的快取記憶體(Cache Buffer)裡面不存在這些資料塊時,就會產生物理讀,另外。像全表掃描、磁碟排序等操作也可能產生物理讀,原因也是因為ORACLE資料庫需要訪問的資料塊較多,而有些資料塊不在記憶體當中,需要從磁碟讀取。

 

邏輯讀(Logical Reads)

 

概念1:邏輯讀指ORACLE從記憶體讀到的資料塊數量。一般來說, logical reads = db block gets + consistent gets

概念2:邏輯讀指的就是從Buffer Cache中讀取資料塊。按照訪問資料塊的模式不同,可以分為當前模式讀(Current Read)和一致性讀(Consistent Read)。 

這兩個概念本質是一樣的,只是措辭不一樣。

 

一致性讀(Consistant Get)

 

ORACLE是一個多使用者系統。當一個會話開始讀取資料還未結束讀取之前,可能會有其他會話修改了它將要讀取的資料。如果會話讀取到修改後的資料,就會造成資料的不一致。一致性讀就是為了保證資料的一致性。在Buffer Cache中的資料塊上都會有最後一次修改資料塊時的SCN。如果一個事務需要修改資料塊中資料,會先在回滾段中儲存一份修改前資料和SCN的資料塊,然後再更新Buffer Cache中的資料塊的資料及其SCN,並標識其為“髒”資料。當其他程式讀取資料塊時,會先比較資料塊上的SCN和程式自己的SCN。如果資料塊上的SCN小於等於程式本身的SCN,則直接讀取資料塊上的資料;如果資料塊上的SCN大於程式本身的SCN,則會從回滾段中找出修改前的資料塊讀取資料。通常,普通查詢都是一致性讀。

 

當前模式讀(DB Block Gets)

 

個人覺得當前模式讀(db block gets)是最難理解的一個概念,通常情況下db block gets 可以理解為是DML操作才會產生的.

當前模式讀(db block gets)即讀取資料塊是當前的最新資料。任何時候在Buffer Cache中都只有一份當前資料塊。當前讀通常發生在對資料進行修改、刪除操作時。這時,程式會給資料加上行級鎖,並且標識資料為“髒”資料。current mode產生db block gets,一般在DML操作時產生,query mode產生consistent gets(一致性讀),一般在查詢時產生。他們兩個總和一般稱為邏輯讀,logical read。

有個有意思的現象,在ask tom或一些資料中,你會發現Oracle 8i在SELECT查詢當中還能看到db block gets,但是ORACLE 10以及以上版本在SELECT語句中db block gets一般為0。

瞭解完了概念,如果你還是有一些疑問和不解,那我們結合實際例子來理解一下這些概念吧。如下所示:

SQL> show user;
USER is "SYS"
 
SQL> create table test
  2  as
  3  select * from dba_objects;
 
Table created.
 
SQL> alter session set sql_trace=true;
 
System altered.
 
SQL> set autotrace on;
SQL> select object_type, count(1) from test 
  2  group by object_type;
 
OBJECT_TYPE           COUNT(1)
------------------- ----------
EDITION                      1
INDEX PARTITION            264
CONSUMER GROUP              25
SEQUENCE                   223
TABLE PARTITION            240
SCHEDULE                     3
QUEUE                       35
RULE                         1
JAVA DATA                  328
...............................
...............................
 
43 rows selected.
 
 
Execution Plan
----------------------------------------------------------
Plan hash value: 1435881708
 
---------------------------------------------------------------------------
| Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
---------------------------------------------------------------------------
|   0 | SELECT STATEMENT   |      | 75101 |   806K|   284   (2)| 00:00:04 |
|   1 |  HASH GROUP BY     |      | 75101 |   806K|   284   (2)| 00:00:04 |
|   2 |   TABLE ACCESS FULL| TEST | 75101 |   806K|   281   (1)| 00:00:04 |
---------------------------------------------------------------------------
Note
-----
   - dynamic sampling used for this statement (level=2)
 
 
Statistics
----------------------------------------------------------
         48  recursive calls
          0  db block gets
       1109  consistent gets
       1029  physical reads
          0  redo size
       1694  bytes sent via SQL*Net to client
        545  bytes received via SQL*Net from client
          4  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
         43  rows processed
 
SQL> select object_type, count(1) from test 
  2  group by object_type;
 
OBJECT_TYPE           COUNT(1)
------------------- ----------
EDITION                      1
INDEX PARTITION            264
CONSUMER GROUP              25
SEQUENCE                   223
TABLE PARTITION            240
..............................
..............................
 
43 rows selected.
 
 
Execution Plan
----------------------------------------------------------
Plan hash value: 1435881708
 
---------------------------------------------------------------------------
| Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
---------------------------------------------------------------------------
|   0 | SELECT STATEMENT   |      | 75101 |   806K|   284   (2)| 00:00:04 |
|   1 |  HASH GROUP BY     |      | 75101 |   806K|   284   (2)| 00:00:04 |
|   2 |   TABLE ACCESS FULL| TEST | 75101 |   806K|   281   (1)| 00:00:04 |
---------------------------------------------------------------------------
Note
-----
   - dynamic sampling used for this statement (level=2)
 
 
Statistics
----------------------------------------------------------
          0  recursive calls
          0  db block gets
       1034  consistent gets
          0  physical reads
          0  redo size
       1694  bytes sent via SQL*Net to client
        545  bytes received via SQL*Net from client
          4  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
         43  rows processed
 
SQL> set autotrace off
SQL> alter session set sql_trace =false;
 
Session altered.
 
SQL> SELECT T.value 
  2         || '/' 
  3         || Lower(Rtrim(I.INSTANCE, Chr(0))) 
  4         || '_ora_' 
  5         || P.spid 
  6         || '.trc' TRACE_FILE_NAME 
  7  FROM   (SELECT P.spid 
  8          FROM   v$mystat M, 
  9                 v$session S, 
 10                 v$process P 
 11          WHERE  M.statistic# = 1 
 12                 AND S.sid = M.sid 
 13                 AND P.addr = S.paddr) P, 
 14         (SELECT T.INSTANCE 
 15          FROM   v$thread T, 
 16                 v$parameter V 
 17          WHERE  V.name = 'thread' 
 18                 AND ( V.value = 0 
 19                        OR T.thread# = To_number(V.value) )) I, 
 20         (SELECT value 
 21          FROM   v$parameter 
 22          WHERE  name = 'user_dump_dest') T;
 
TRACE_FILE_NAME
--------------------------------------------------------------------------------
/u01/app/oracle/diag/rdbms/gsp/gsp/trace/gsp_ora_24900.trc

clip_image001

 

如上截圖所示, SQL語句第一次執行時,一致性讀(consistent gets)為1109, 物理讀(physical reads)為1029,當前模式讀(db block gets)為0. 如果你再執行一次上面SQL語句,你會發現物理讀(physical reads)會降低為0了,因為上一次查詢,ORACLE已經將表test的所有資料塊讀取到buffer cache裡面了。當然生產環境實際情況會複雜很多。

 

clip_image002

 

我們先用tkprof工具格式化一下trace檔案,然後我們分析一下 out_24900.prf檔案。

 

[oracle@DB-Server trace]$ tkprof gsp_ora_24900.trc out_24900.prf aggregate=no;

TKPROF: Release 11.2.0.1.0 - Development on Thu Sep 22 10:12:15 2016

Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.

 

在分析之前,我們先了解一下一些概念、術語

count    = number of times OCI procedure was executed

cpu      = cpu time in seconds executing

elapsed  = elapsed time in seconds executing

disk     = number of physical reads of buffers from disk                   物理讀

query    = number of buffers gotten for consistent read                    一致性讀

current  = number of buffers gotten in current mode (usually for update)   當前模式讀

rows     = number of rows processed by the fetch or execute call

 

 

call:每次SQL語句的處理都分成三個部分

 

    Parse:這步包括語法檢查和語義檢查(包括檢查是否有正確的授權和所需要用到的表、列以及其他引用到的物件是否存在)、以及將SQL語句轉換、生成執行計劃等。

 

    Execute:這步是真正的由ORACLE來執行語句。對於insertupdatedelete操作,這步會修改資料,對於select操作,這步就只是確定選擇的記錄。

    Fetch:返回查詢語句中所獲得的記錄,這步只有select語句會被執行。

 

count   這個語句被parseexecutefetch的次數。

cpu     :這個語句對於所有的parseexecutefetch所消耗的cpu的時間,以秒為單位。

elapsed :這個語句所有消耗在parseexecutefetch的總的時間。

disk    :從磁碟上的資料檔案中物理讀取的資料塊的數量。

query   :在一致性讀模式下,一致性讀的數量。

current :在current模式下,即當前模式讀下db blocks gets的數量。

rows    所有SQL語句返回的記錄數目,但是不包括子查詢中返回的記錄數目。對於select語句,返回記錄是在fetch這步,對於insertupdatedelete操作,返回記錄則是在execute這步。 


如下截圖所示(圖1與圖2本是連線在一起的,由於太長,分開截圖,兩張圖片有相同部分),由於我們實驗過程中,並沒有採集統計資訊,你會看到trac檔案裡面有一個動態取樣(如果你在建立表,做一次統計資訊收集,結果會有一些差別),另外,物理讀和一致性讀如下,跟上面的執行計劃中的資料一致。


disk(物理讀)      = 747+282 = 1029

query(一致性讀)   = 1035+74 = 1109

clip_image003

clip_image004

 

繼續分析格式化的prf檔案,我們會看到第二次查詢的query(一致性讀)為1034, disk(物理讀)為0


clip_image005

 

上面例子,讓我們瞭解了物理讀、一致性讀,那麼接下來看看當前模式讀(db block gets)的例子

SQL> create table t
  2  ( id  number(10)
  3  );
 
Table created.
 
SQL> set autotrace on;
SQL> insert into t
  2  values(1000);
 
1 row created.
 
 
Execution Plan
----------------------------------------------------------
---------------------------------------------------------------------------------
| Id  | Operation                | Name | Rows  | Bytes | Cost (%CPU)| Time     |
---------------------------------------------------------------------------------
|   0 | INSERT STATEMENT         |      |     1 |   100 |     1   (0)| 00:00:01 |
|   1 |  LOAD TABLE CONVENTIONAL | T    |       |       |            |          |
---------------------------------------------------------------------------------
 
Statistics
----------------------------------------------------------
          1  recursive calls
          7  db block gets
          1  consistent gets
          0  physical reads
        748  redo size
        836  bytes sent via SQL*Net to client
        783  bytes received via SQL*Net from client
          3  SQL*Net roundtrips to/from client
          1  sorts (memory)
          0  sorts (disk)
          1  rows processed
 
SQL> insert into t
  2  values(1001);
 
1 row created.
 
 
Execution Plan
----------------------------------------------------------
---------------------------------------------------------------------------------
| Id  | Operation                | Name | Rows  | Bytes | Cost (%CPU)| Time     |
---------------------------------------------------------------------------------
|   0 | INSERT STATEMENT         |      |     1 |   100 |     1   (0)| 00:00:01 |
|   1 |  LOAD TABLE CONVENTIONAL | T    |       |       |            |          |
---------------------------------------------------------------------------------
 
Statistics
----------------------------------------------------------
          1  recursive calls
          1  db block gets
          1  consistent gets
          0  physical reads
        308  redo size
        837  bytes sent via SQL*Net to client
        783  bytes received via SQL*Net from client
          3  SQL*Net roundtrips to/from client
          1  sorts (memory)
          0  sorts (disk)
          1  rows processed
 

clip_image006

 

一致性讀如何計算呢?

 

關於一致性讀如何計算呢? 我查了一下資料,一般一致性讀consistent gets ~= numrows/arraysize + blocks ,確切的說是consistent reads計算 ~=ceil(獲取行數(card)/arraysize)+used blocks, 而且這個不是絕對等於,而是約等於的關係。 但是這個不是官方資料,而是asktom和一些技術部落格的介紹,我們來驗證看看吧

 
SQL> exec dbms_stats.gather_table_stats(user, 'TEST');
 
PL/SQL procedure successfully completed.
 
SQL> 
SQL> set autotrace traceonly stat
SQL> select * from test;
 
72271 rows selected.
 
 
Statistics
----------------------------------------------------------
        448  recursive calls
          0  db block gets
       5846  consistent gets
       1031  physical reads
          0  redo size
    8296071  bytes sent via SQL*Net to client
      53521  bytes received via SQL*Net from client
       4820  SQL*Net roundtrips to/from client
          3  sorts (memory)
          0  sorts (disk)
      72271  rows processed
SQL> /
 
72271 rows selected.
 
 
Statistics
----------------------------------------------------------
          0  recursive calls
          0  db block gets
       5789  consistent gets
          0  physical reads
          0  redo size
    8296071  bytes sent via SQL*Net to client
      53521  bytes received via SQL*Net from client
       4820  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
      72271  rows processed
 

clip_image007

SQL> set autotrace off;
SQL> set serveroutput on;
SQL> exec show_space('TEST',USER);
Free Blocks.............................               0
Total Blocks............................           1,152
Total Bytes.............................       9,437,184
Total MBytes............................               9
Unused Blocks...........................             121
Unused Bytes............................         991,232
Last Used Ext FileId....................               1
Last Used Ext BlockId...................          89,344
Last Used Block.........................               7
 
PL/SQL procedure successfully completed.
 
SQL> show arraysize ;
arraysize 15
SQL> select ceil(72271/15) + 1152-121 from dual;
 
CEIL(72271/15)+1152-121
-----------------------
                   5850
 
SQL> SELECT COUNT(DISTINCT dbms_rowid.rowid_block_number(ROWID)) AS blocks FROM TEST;
 
    BLOCKS
----------
      1030
 
SQL> SELECT  ceil(72271/15) + 1030 FROM DUAL;
 
CEIL(72271/15)+1030
-------------------
               5849

clip_image008

 

不管是5849還是5850,都和5879 或5846有一點的出入?也就是說上面那個公式不能用等於號,關於這個,其實在https://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:880343948514 裡面,你會看到這裡介紹的也是一個約等於關係,而不是一個絕對等於的關係。在這裡我想深入一點,無奈知識有限。 從上面的公式, 我們可以看到一致性讀跟arraysize的關係是蠻大的。那麼我們來測試驗證一下,先將araraysize調整為50

SQL> set autotrace off;
SQL> set arraysize 50
SQL> set autotrace traceonly stat;
SQL> select * from test;
 
72271 rows selected.
 
 
Statistics
----------------------------------------------------------
          0  recursive calls
          0  db block gets
       2456  consistent gets
          0  physical reads
          0  redo size
    7668743  bytes sent via SQL*Net to client
      16418  bytes received via SQL*Net from client
       1447  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
      72271  rows processed
 
SQL> 

clip_image009

SQL> SELECT  ceil(72271/50) + 1030 FROM DUAL;
 
CEIL(72271/50)+1030
-------------------
               2476
 
SQL> 

 

如上所示,一致性讀從5789降為了2456,有興趣的可以做一下實驗。另外,由於在Oracle中,取資料最後都是從buffer cache中取,所以每出現一個physical reads必然會出現一次 logical reads. 也就是說物理讀(physical reads)一定小於邏輯讀(logical reads=db block gets + consistent gets),也就是說物理讀一定小於一致性讀,但是也有物理讀大於邏輯讀的情況,具體參考官方文件 Why Physical Read is greater than Logical Read in Tkprof (文件 ID 211700.1)

PURPOSE

In some circumstances, you can find that tkprof report shows more physical reads than logical reads, which isn't the current result as the physical reads are normally included in logical reads.

SCOPE & APPLICATION

This article will be useful for the DBA's and customers who are concerned by the tuning of Requests.

Why Physical reads are greater than Logical reads

Sometimes, you can find the following content in tkprof report:

· Physical Reads = Disk (total)

· Logical Reads = Query (total) + Current (total)

call

count

cpu

elapsed

disk

query

current

rows

-------

------

--------

----------

----------

----------

----------

----------

Parse

1

0.67

1.10

0

0

0

0

Execute

1

0.00

0.00

0

0

0

0

Fetch

2202

167.48

678.70

579441

283473

17418

33014

-------

------

--------

----------

----------

----------

----------

----------

total

2204

168.15

679.81

579441

283473

17418

33014

The 'disk' column is then greater than the 'query' + 'current' columns. This isn't usual.

To find the root cause of the problem, you must generate a 10046 event trace file level 8 and check for direct read waits in it.

In 10046 raw trace, you will find "direct path read" and "direct path write" waits like the example below:

WAIT #1: nam='direct path read' ela= 10076 p1=4 p2=29035 p3=1

with P1 = file#P2 = start block#P3 = num blocks

The "direct path read" waits account explains the difference between logical and physical reads.

In Oracle 9.2 and above, TKProf will print waits associated with each SQL statement in the output file.

Explanation:

The reason for more physical reads than logical reads is due to the number of direct reads block access. Direct path reads are generally used by Oracle when reading directly into PGA memory (as opposed to into the buffer cache).

They may happen on different actions:

· Sort IO on disk.

· Read by parallel Query Slaves when scanning is done.

· Blocks read by anticipation (readahead).

Such reads are done without loading blocks into the Buffer Cache. They can be single or multiblock reads.

Utilizing Direct Path Reads in this manner prevents the Oracle Buffer cache from beeing overloaded.

Oracle uses this optimisation when it considers that its not necessary to share the blocks between different sessions.

 

最後我們來看一個,熱表上一致性讀飆漲的案例,其實這個是Oracle 9i&10g程式設計藝術:深入資料庫體系結構這本書籍裡面的一個案例,我們在此重演一遍,希望能加深大家對一致性讀的理解,首先準備測試資料環境

SQL> show user;
USER is "TEST"
SQL> create table t( x int);
 
Table created.
 
SQL> insert into t values(1);
 
1 row created.
 
SQL> commit;
 
Commit complete.
 
SQL> exec dbms_stats.gather_table_stats(user, 'T');
 
PL/SQL procedure successfully completed.
 
 
SQL> set autotrace on statistics;
SQL> select * from t;
 
         X
----------
         1
 
 
Statistics
----------------------------------------------------------
          0  recursive calls
          0  db block gets
          7  consistent gets
          0  physical reads
          0  redo size
        523  bytes sent via SQL*Net to client
        523  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
          1  rows processed
 
SQL> 

clip_image010

 

如上所示,一般情況下一致性讀為7,但是我們在一個會話視窗準備執行下面SQL,頻繁修改表T

 
SQL> begin
  2   for i in 1 .. 100000
  3   loop
  4     update t set x=x+1;
  5     commit;
  6   end loop;
  7  end;
  8  /
 
PL/SQL procedure successfully completed.

 

在上面會話執行的同時,我們在另外一個會話視窗馬上執行下面SQL,你會看到一致性讀飆漲。

SQL> alter session set isolation_level=serializable;
 
Session altered.
 
SQL> set autotrace on statistics;
SQL> select * from t;
 
         X
----------
         1
 
 
Statistics
----------------------------------------------------------
          1  recursive calls
          0  db block gets
      23681  consistent gets
          0  physical reads
          0  redo size
        523  bytes sent via SQL*Net to client
        523  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
          1  rows processed

clip_image011

 

將會話設定為使用SERIALIZABLE 隔離級別,這樣無論在會話中執行多少次查詢,都將得到事務開始時刻的查詢結果。具體分析不在此畫蛇添足,大家感興趣的可以去看看Oracle9i&10g程式設計藝術:深入資料庫體系結構。

 

參考資料:

https://docs.oracle.com/cd/B19306_01/server.102/b14220/consist.htm#i13945

https://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:880343948514

Oracle 9i&10g程式設計藝術:深入資料庫體系結構

作者:瀟湘隱者




在sql調優的時候,一個關鍵指標就是consistent gets,如果這個指標很低,一般認為sql語句執行還是很高效的,反之效率會很低。但是這個指標我們知之甚少,對於這個指標的計算方式我們也是懵懵懂懂。對於邏輯讀來說,一般都是基於Logical Reads= Consistent Gets + DB Block Gets
如果我們知道logical reads是1000,我們可能錯誤地認為查詢讀取了1000*8k(約為8M)
看了部落格https://viveklsharma.wordpress.com/2010/03/04/consistent-gets-myth/後,發現自己的認識是錯誤的,也按捺不住在本地測試了一把,受益匪淺。
首先我們來建立一個表,資料量為2000條。
n1@TEST11G> create table test_consistent_get  as select * from all_objects where rownum between 1 and 2000;
Table created.
然後收集統計資訊
n1@TEST11G> exec dbms_stats.gather_table_stats(user,'TEST_CONSISTENT_GET');                               
PL/SQL procedure successfully completed.
檢視相應的資料塊為30個
n1@TEST11G> select num_rows,blocks,table_name,last_analyzed,global_stats from user_tables where table_name='TEST_CONSISTENT_GET';   
  NUM_ROWS     BLOCKS TABLE_NAME                     LAST_ANAL GLO
---------- ---------- ------------------------------ --------- ---
      2000         30 TEST_CONSISTENT_GET            20-APR-15 YES
n1@TEST11G> set autot trace
我們來看看執行計劃,很明顯走了一個全表掃描。但是我們需要關注的是統計資訊中的consistent gets
n1@TEST11G> select * from test_consistent_get;                                                                                                                                         
Execution Plan
----------------------------------------------------------
Plan hash value: 1444268095
-----------------------------------------------------------------------------------------
| Id  | Operation         | Name                | Rows  | Bytes | Cost (%CPU)| Time     |
-----------------------------------------------------------------------------------------
|   0 | SELECT STATEMENT  |                     |  2000 |   164K|    10   (0)| 00:00:01 |
|   1 |  TABLE ACCESS FULL| TEST_CONSISTENT_GET |  2000 |   164K|    10   (0)| 00:00:01 |
-----------------------------------------------------------------------------------------
Statistics
----------------------------------------------------------
          1  recursive calls
          0  db block gets
        163  consistent gets
          0  physical reads
          0  redo size
     199754  bytes sent via SQL*Net to client
       1883  bytes received via SQL*Net from client
        135  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
       2000  rows processed       
可以看到這個表佔用的資料塊為30,但是consistent gets卻為163,很顯然不是說這個全表掃描向cache裡讀入了163*8k的資料
我們可以通過rowid來得到對應的資料塊和其中的資料情況
n1@TEST11G> select dbms_rowid.ROWID_BLOCK_NUMBER(rowid) blkno, count(*) cnt
    from test_consistent_get
    group by dbms_rowid.ROWID_BLOCK_NUMBER(rowid) order by 1;
     BLKNO        CNT
---------- ----------
    263827         88
    263828         84
    263829         81
    263830         76
    263831         81
    263832         80
    263833         82
    263834         77
    263835         73
    263836         78
    263837         79
    263838         79
    263839         81
    263841         82
    263842         77
    263843         81
    263844         80
    263845         81
    263846         78
    263847         78
    263848         76
    263849         78
    263850         78
    263851         76
    263852         81
    263853         15
26 rows selected.
可以通過rowid得到相關的資料塊為26個。檢視段頭,發現對應的資料塊是263826是不在上面的rowid對應的資料塊範圍內的。
n1@TEST11G> select header_block,blocks ,extents from dba_segments where segment_name='TEST_CONSISTENT_GET';
HEADER_BLOCK     BLOCKS    EXTENTS
------------ ---------- ----------
      263826         32          4
對應的區和資料塊資訊如下:
n1@TEST11G> select EXTENT_ID, FILE_ID, BLOCK_ID, BLOCKS from dba_extents where SEGMENT_NAME='TEST_CONSISTENT_GET';
 EXTENT_ID    FILE_ID   BLOCK_ID     BLOCKS
---------- ---------- ---------- ----------
         0          4     263824          8
         1          4     263832          8
         2          4     263840          8
         3          4     263848          8
下面的語句可以算出對於每個資料塊對應的consistent gets的值。
n1@TEST11G> 
variable b1 number;
exec :b1:=15;
 compute sum of total_cnt on report
 compute sum of touch_cnt on report
 break on report
select blkno, total_cnt, final_cnt, rows_remaining,
case when rows_remaining=0 then touch_cnt+1 else touch_cnt end touch_cnt
from (
select blkno, total_cnt, final_cnt, rows_remaining,
case when total_cnt = final_cnt then ceil(final_cnt/:b1) else ceil(final_cnt/:b1)+1 end touch_cnt
from (
select blkno, cnt total_cnt, 
case when rownum=1 or lag(rows_remaining) over (order by blkno)=0 
                     then cnt else (cnt-(:b1-lag(rows_remaining) over (order by blkno))) end final_cnt,
rows_remaining 
from (
select blkno, cnt, rr, 
lead(rr) over(order by blkno) next_rr,
lead(blkno) over(order by blkno) next_blk,
ceil(rr/:b1) touch_cnt,
mod(rr,:b1) rows_remaining
from (
select dbms_rowid.ROWID_BLOCK_NUMBER(rowid) blkno, count(*) cnt, 
sum(count(*)) over(order by dbms_rowid.ROWID_BLOCK_NUMBER(rowid)) rr 
from test_consistent_get
group by dbms_rowid.ROWID_BLOCK_NUMBER(rowid) order by 1))));

     BLKNO  TOTAL_CNT  FINAL_CNT ROWS_REMAINING  TOUCH_CNT
---------- ---------- ---------- -------------- ----------
    263827         88         88             13          6
    263828         84         82              7          7
    263829         81         73             13          6
    263830         76         74             14          6
    263831         81         80              5          7
    263832         80         70             10          6
    263833         82         77              2          7
    263834         77         64              4          6
    263835         73         62              2          6
    263836         78         65              5          6
    263837         79         69              9          6
    263838         79         73             13          6
    263839         81         79              4          7
    263841         82         71             11          6
    263842         77         73             13          6
    263843         81         79              4          7
    263844         80         69              9          6
    263845         81         75              0          7
    263846         78         78              3          6
    263847         78         66              6          6
    263848         76         67              7          6
    263849         78         70             10          6
    263850         78         73             13          6
    263851         76         74             14          6
    263852         81         80              5          7
    263853         15          5              5          2
           ----------                           ----------
sum              2000                                  159
可以看到對於這個全表掃描的場景,consistent gets不是衡量對於cache的資料塊數而是次數。
比如對於上面的資料塊263827 ,資料條數為88條,arraysize為15,則可以簡單說明一下是如何計算這個consistent gets值的。
對於資料塊263827,放入PGA中,得到了15行,這個時候可以理解為consistent gets=1
對於資料塊263827,再次從PGA中得到,得到了15行,這個時候consistent gets=2
依次類推
對於資料塊263827,再次從PGA中得到,得到了13行,這個時候consistent gets=6
或者也可以基本按照這個公式來計算,資料行數/arraysize+資料塊數=consistent gets
比如這個例子,2000/15+30 大概是163.3左右,所以163還是靠譜的。
對於arraysize未20,30,的情況下,相應的consistent gets也會減少。簡單模擬一下。

n1@TEST11G> set arraysize 20  
n1@TEST11G> set autot trace exp stat
n1@TEST11G> select *from test_consistent_get;
Statistics
----------------------------------------------------------
          1  recursive calls
          0  db block gets
        128  consistent gets
          0  physical reads
          0  redo size
     195334  bytes sent via SQL*Net to client
       1509  bytes received via SQL*Net from client
        101  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
       2000  rows processed
n1@TEST11G> set autot off
n1@TEST11G> select 2000/20+30 from dual;
2000/20+30
----------
       130
n1@TEST11G> set arraysize 30
n1@TEST11G> set autot trace  stat
n1@TEST11G> select *from test_consistent_get;
Statistics
----------------------------------------------------------
          0  recursive calls
          0  db block gets
         96  consistent gets
          0  physical reads
          0  redo size
     191044  bytes sent via SQL*Net to client
       1146  bytes received via SQL*Net from client
         68  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
       2000  rows processed
n1@TEST11G> set autot off         
n1@TEST11G> select 2000/30+30 from dual;
2000/30+30
----------
96.6666667






About Me

...............................................................................................................................

● 本文轉載自http://www.cnblogs.com/kerrycode/p/5940626.html

● 本文在itpub(http://blog.itpub.net/26736162)、部落格園(http://www.cnblogs.com/lhrbest)和個人微信公眾號(xiaomaimiaolhr)上有同步更新

● 本文itpub地址:http://blog.itpub.net/26736162/abstract/1/

● 本文部落格園地址:http://www.cnblogs.com/lhrbest

● 本文pdf版及小麥苗雲盤地址:http://blog.itpub.net/26736162/viewspace-1624453/

● 資料庫筆試面試題庫及解答:http://blog.itpub.net/26736162/viewspace-2134706/

● QQ群:230161599     微信群:私聊

● 聯絡我請加QQ好友(646634621),註明新增緣由

● 於 2017-06-01 09:00 ~ 2017-06-30 22:00 在魔都完成

● 文章內容來源於小麥苗的學習筆記,部分整理自網路,若有侵權或不當之處還請諒解

● 版權所有,歡迎分享本文,轉載請保留出處

...............................................................................................................................

拿起手機使用微信客戶端掃描下邊的左邊圖片來關注小麥苗的微信公眾號:xiaomaimiaolhr,掃描右邊的二維碼加入小麥苗的QQ群,學習最實用的資料庫技術。

ORACLE 物理讀 邏輯讀 一致性讀 當前模式讀總結淺析
DBA筆試面試講解
歡迎與我聯絡

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31015730/viewspace-2145177/,如需轉載,請註明出處,否則將追究法律責任。

相關文章