如果要分析某條 SQL 的性能問題,通常我們要先看 SQL 的執行計劃,看看 SQL 的每一步執行是否存在問題。 如果一條 SQL 平時執行的好好的,卻有一天突然性能很差,如果排除了系統資源和阻塞的原因,那么基本可以斷定是執行計劃出了問題。
看懂執行計劃也就成了 SQL 優化的先決條件。 這里的 SQL 優化指的是 SQL 性能問題的定位,定位后就可以解決問題。
一. 查看執行計劃的三種方法
1.1 設置 autotrace
序號 |
命令 |
解釋 |
1 |
SETAUTOTRACEOFF |
此為默認值,即關閉 Autotrace |
2 |
SETAUTOTRACEONEXPLAIN |
只顯示執行計劃 |
3 |
SETAUTOTRACEONSTATISTICS |
只顯示執行的統計信息 |
4 |
SETAUTOTRACEON |
包含 2,3 兩項內容 |
5 |
SETAUTOTRACETRACEONLY |
與 ON 相似,但不顯示語句的執行結果 |
SQL> set autotrace on
SQL> select * from dave;
ID NAME
---------- ----------
8 安慶
1 dave
2 bl
1 bl
2 dave
3 dba
4 sf-express
5 dmm
已選擇 8 行。
執行計劃
----------------------------------------------------------
Plan hash value: 3458767806
--------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 8 | 64 | 2 (0)| 00:00:01 |
| 1 | TABLE ACCESS FULL| DAVE | 8 | 64 | 2 (0)| 00:00:01 |
--------------------------------------------------------------------------
統計信息
----------------------------------------------------------
0 recursive calls
0 db block gets
4 consistent gets
0 physical reads
0 redo size
609 bytes sent via SQL*Net to client
416 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
8 rows processed
SQL>
1.2 使用 SQL
SQL>EXPLAIN PLAN FOR sql 語句 ;
SQL>SELECT plan_table_output FROM TABLE(DBMS_XPLAN.DISPLAY('PLAN_TABLE'));
示例:
SQL> EXPLAIN PLAN FOR SELECT * FROM DAVE;
已解釋。
SQL> SELECT plan_table_output FROM TABLE(DBMS_XPLAN.DISPLAY('PLAN_TABLE'));
或者:
SQL> select * from table(dbms_xplan.display);
PLAN_TABLE_OUTPUT
--------------------------------------------------------------------------------
Plan hash value: 3458767806
--------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 8 | 64 | 2 (0)| 00:00:01 |
| 1 | TABLE ACCESS FULL| DAVE | 8 | 64 | 2 (0)| 00:00:01 |
--------------------------------------------------------------------------
已選擇 8 行。
執行計劃
----------------------------------------------------------
Plan hash value: 2137789089
--------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
---------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 8168 | 16336 | 29 (0)| 00:00:01 |
| 1 | COLLECTION ITERATOR PICKLER FETCH| DISPLAY | 8168 | 16336 | 29 (0)| 00:00:01 |
---------------------------------------------------------------------------------------------
統計信息
----------------------------------------------------------
25 recursive calls
12 db block gets
168 consistent gets
0 physical reads
0 redo size
974 bytes sent via SQL*Net to client
416 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
8 rows processed
SQL>
1.3 使用 Toad,PL/SQL Developer 工具
二. Cardinality (基數) / rows
Cardinality 值表示 CBO 預期從一個行源( row source )返回的記錄數,這個行源可能是一個表,一個索引,也可能是一個子查詢。 在 Oracle 9i 中的執行計劃中, Cardinality 縮寫成 Card 。 在 10g 中, Card 值被 rows 替換。
這是 9i 的一個執行計劃,我們可以看到關鍵字 Card :
執行計劃
----------------------------------------------------------
0 SELECT STATEMENT Optimizer=CHOOSE (Cost=2 Card=1 Bytes=402)
1 0 TABLE ACCESS (FULL) OF 'TBILLLOG8' (Cost=2 Card=1 Bytes=402)
Oracle 10g 的執行計劃,關鍵字換成了 rows :
執行計劃
----------------------------------------------------------
Plan hash value: 2137789089
--------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
---------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 8168 | 16336 | 29 (0)| 00:00:01 |
| 1 | COLLECTION ITERATOR PICKLER FETCH| DISPLAY | 8168 | 16336 | 29 (0)| 00:00:01 |
---------------------------------------------------------------------------------------------
Cardinality 的值對于 CBO 做出正確的執行計劃來說至關重要。 如果 CBO 獲得的 Cardinality 值不夠準確(通常是沒有做分析或者分析數據過舊造成),在執行計劃成本計算上就會出現偏差,從而導致 CBO 錯誤的制定出執行計劃。
在多表關聯查詢或者 SQL 中有子查詢時,每個關聯表或子查詢的 Cardinality 的值對主查詢的影響都非常大,甚至可以說, CBO 就是依賴于各個關聯表或者子查詢 Cardinality 值計算出最后的執行計劃。
對于多表查詢, CBO 使用每個關聯表返回的行數( Cardinality )決定用什么樣的訪問方式來做表關聯(如 Nested loops Join 或 hash Join )。
多表連接的三種方式詳解 HASH JOIN MERGE JOIN NESTED LOOP
http://blog.csdn.net/tianlesoftware/archive/2010/08/20/5826546.aspx
對于子查詢,它的 Cardinality 將決定子查詢是使用索引還是使用全表掃描的方式訪問數據。
三. SQL 的執行計劃
生成 SQL 的執行計劃是 Oracle 在對 SQL 做硬解析時的一個非常重要的步驟,它制定出一個方案告訴 Oracle 在執行這條 SQL 時以什么樣的方式訪問數據:索引還是全表掃描,是 Hash Join 還是 Nested loops Join 等。 比如說某條 SQL 通過使用索引的方式訪問數據是最節省資源的,結果 CBO 作出的執行計劃是全表掃描,那么這條 SQL 的性能必然是比較差的。
Oracle SQL 的硬解析和軟解析
http://blog.csdn.net/tianlesoftware/archive/2010/04/08/5458896.aspx
示例:
SQL> SET AUTOTRACE TRACEONLY; -- 只顯示執行計劃,不顯示結果集
SQL> select * from scott.emp a,scott.emp b where a.empno=b.mgr;
已選擇 13 行。
執行計劃
----------------------------------------------------------
Plan hash value: 992080948
---------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
---------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 13 | 988 | 6 (17)| 00:00:01 |
| 1 | MERGE JOIN | | 13 | 988 | 6 (17)| 00:00:01 |
| 2 | TABLE ACCESS BY INDEX ROWID| EMP | 14 | 532 | 2 (0)| 00:00:01 |
| 3 | INDEX FULL SCAN | PK_EMP | 14 | | 1 (0)| 00:00:01 |
|* 4 | SORT JOIN | | 13 | 494 | 4 (25)| 00:00:01 |
|* 5 | TABLE ACCESS FULL | EMP | 13 | 494 | 3 (0)| 00:00:01 |
---------------------------------------------------------------------------------------
Predicate Information (identified by operation id):
---------------------------------------------------
4 - access("A"."EMPNO"="B"."MGR")
filter("A"."EMPNO"="B"."MGR")
5 - filter("B"."MGR" IS NOT NULL)
統計信息
----------------------------------------------------------
0 recursive calls
0 db block gets
11 consistent gets
0 physical reads
0 redo size
2091 bytes sent via SQL*Net to client
416 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
13 rows processed
SQL>
圖片是 Toad 工具查看的執行計劃。 在 Toad 里面,很清楚的顯示了執行的順序。 但是如果在 SQLPLUS 里面就不是那么直接。 但我們也可以判斷: 一般按縮進長度來判斷,縮進最大的最先執行,如果有 2 行縮進一樣,那么就先執行上面的。
3.1 執行計劃中字段解釋:
ID: 一個序號,但不是執行的先后順序。執行的先后根據縮進來判斷。
Operation : 當前操作的內容。
Rows : 當前操作的 Cardinality , Oracle 估計當前操作的返回結果集。
Cost ( CPU ): Oracle 計算出來的一個數值(代價),用于說明 SQL 執行的代價。
Time : Oracle 估計當前操作的時間。
3.2 謂詞說明:
Predicate Information (identified by operation id):
---------------------------------------------------
4 - access ("A"."EMPNO"="B"."MGR")
filter("A"."EMPNO"="B"."MGR")
5 - filter ("B"."MGR" IS NOT NULL)
Access: 表示這個謂詞條件的值將會影響數據的訪問路勁(表還是索引)。
Filter :表示謂詞條件的值不會影響數據的訪問路勁,只起過濾的作用。
在謂詞中主要注意 access ,要考慮謂詞的條件,使用的訪問路徑是否正確。
3.3 統計信息說明:
dbblockgets : 從 buffercache 中讀取的 block 的數量
consistentgets : 從 buffercache 中讀取的 undo 數據的 block 的數量
physicalreads : 從磁盤讀取的 block 的數量
redosize : DML 生成的 redo 的大小
sorts(memory) : 在內存執行的排序量
sorts(disk) : 在磁盤上執行的排序量
Physical Reads 通常是我們最關心的,如果這個值很高,說明要從磁盤請求大量的數據到 Buffer Cache 里,通常意味著系統里存在大量全表掃描的 SQL 語句,這會影響到數據庫的性能,因此盡量避免語句做全表掃描,對于全表掃描的 SQL 語句,建議增 加相關的索引,優化 SQL 語句來解決。
關于 physical reads , db block gets 和 consistent gets 這三個參數之間有一個換算公式:
數據緩沖區的使用命中率 =1 - ( physical reads / (db block gets + consistent gets) ) 。
用以下語句可以查看數據緩沖區的命中率:
SQL>SELECT name, value FROM v$sysstat WHERE name IN ('db block gets', 'consistent gets','physical reads');
查詢出來的結果 Buffer Cache 的命中率應該在 90 %以上,否則需要增加數據緩沖區的大小。
Recursive Calls : Number of recursive calls generated at both the user and system level.
Oracle Database maintains tables used for internal processing. When it needs to change these tables, Oracle Database generates an internal SQL statement, which in turn generates a recursive call. In short, recursive calls are basically SQL performed on behalf of your SQL. So, if you had to parse the query, for example, you might have had to run some other queries to get data dictionary information. These would be recursive calls. Space management, security checks, calling PL/SQL from SQL—all incur recursive SQL calls 。
DB Block Gets : Number of times a CURRENT block was requested.
Current mode blocks are retrieved as they exist right now, not in a consistent read fashion. Normally, blocks retrieved for a query are retrieved as they existed when the query began. Current mode blocks are retrieved as they exist right now, not from a previous point in time. During a SELECT, you might see current mode retrievals due to reading the data dictionary to find the extent information for a table to do a full scan (because you need the "right now" information, not the consistent read). During a modification, you will access the blocks in current mode in order to write to them. (DB Block Gets:
請求的數據塊在
buffer
能滿足的個數
)
當前模式塊意思就是在操作中正好提取的塊數目,而不是在一致性讀的情況下而產生的塊數。
正常的情況下,一個查詢提取的塊是在查詢開始的那個時間點上存在的數據塊,當前塊是在這個時刻存在的數據塊,而不是在這個時間點之前或者之后的數據塊數目。
Consistent Gets : Number of times a consistent read was requested for a block.
This is how many blocks you processed in "consistent read" mode. This will include counts of blocks read from the rollback segment in order to roll back a block. This is the mode you read blocks in with a SELECT, for example. Also, when you do a searched UPDATE/DELETE, you read the blocks in consistent read mode and then get the block in current mode to actually do the modification. (Consistent Gets:
數據請求總數在回滾段
Buffer
中的數據一致性讀所需要的數據塊
)
這里的概念是在處理你這個操作的時候需要在一致性讀狀態上處理多少個塊,
這些塊產生的主要原因是因為由于在你查詢的過程中,由于其他會話對數據塊進行操
作,而對所要查詢的塊有了修改,但是由于我們的查詢是在這些修改之前調用的,所以需要對回滾段中的數據塊的前映像進行查詢,以保證數據的一致性。這樣就產
生了一致性讀。
Physical Reads : Total number of data blocks read from disk. This number equals the value of "physical reads direct" plus all reads into buffer cache. (Physical Reads: 實例啟動后,從磁盤讀到 Buffer Cache 數據塊數量 )
就是從磁盤上讀取數據塊的數量,其產生的主要原因是:
(
1
)
在數據庫高速緩存中不存在這些塊
(
2
)
全表掃描
(
3
)
磁盤排序
它們三者之間的關系大致可概括為:
邏輯讀指的是
Oracle
從內存讀到的數據塊數量。一般來說是
'consistent gets' + 'db block gets'
。當在內存中找不到所需的數據塊的話就需要從磁盤中獲取,于是就產生了
'physical reads'
。
Sorts(disk):
Number of sort operations that required at least one disk write. Sorts that require I/O to disk are quite resource intensive. Try increasing the size of the initialization parameter SORT_AREA_SIZE.
bytes sent via SQL*Net to client:
Total number of bytes sent to the client from the foreground processes.
bytes received via SQL*Net from client:
Total number of bytes received from the client over Oracle Net.
SQL*Net roundtrips to/from client:
Total number of Oracle Net messages sent to and received from the client.
更多內容參考 Oracle 聯機文檔:
Statistics Descriptions
http://download.oracle.com/docs/cd/E11882_01/server.112/e10820/stats002.htm#i375475
3.4 動態分析
如果在執行計劃中有如下提示:
Note
------------
-dynamic sampling used for the statement
這提示用戶 CBO 當前使用的技術,需要用戶在分析計劃時考慮到這些因素。 當出現這個提示,說明當前表使用了動態采樣。 我們從而推斷這個表可能沒有做過分析。
這里會出現兩種情況:
(1) 如果表沒有做過分析 ,那么 CBO 可以通過動態采樣的方式來獲取分析數據,也可以或者正確的執行計劃。
(2) 如果表分析過 ,但是分析信息過舊,這時 CBO 就不會在使用動態采樣, 而是使用這些舊的分析數據,從而可能導致錯誤的執行計劃。
總結:
在看執行計劃的時候,除了看執行計劃本身,還需要看謂詞和提示信息。 通過整體信息來判斷 SQL 效率。
整理自網絡
------------------------------------------------------------------------------
Blog : http://blog.csdn.net/tianlesoftware
網上資源: http://tianlesoftware.download.csdn.net
相關視頻: http://blog.csdn.net/tianlesoftware/archive/2009/11/27/4886500.aspx
DBA1 群: 62697716( 滿 ); DBA2 群: 62697977( 滿 )
DBA3 群: 63306533; 聊天 群: 40132017
更多文章、技術交流、商務合作、聯系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號聯系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
