徹底弄懂oracle硬解析、軟解析、軟軟解析

zhangsharp20發表於2017-11-18

硬解析和軟解析有相同的一步,而軟軟解析與硬解析、軟解析完全不一樣。先來說下理論上的東西,然後來做個實驗。

硬解析過程:

    1.語法、語義及許可權檢查;

    2.查詢轉換(透過應用各種不同的轉換技巧,會生成語義上等同的新的SQL語句,如count(1)會轉為count(*));

    3.根據統計資訊生成執行計劃(找出成本最低的路徑,這一步比較耗時);

    4.將遊標資訊(執行計劃)儲存到庫快取。

軟解析過程:

    1.語法、語義及許可權檢查;

    2.將整條SQL hash後從庫快取中執行計劃。

    軟解析對比硬解析省了三個步驟。

軟軟解析過程:

    要完全理解軟軟解析先要理解遊標的概念,當執行SQL時,首先要開啟遊標,執行完成後,要關閉遊標,遊標可以理解為SQL語句的一個控制程式碼。

在執行軟軟解析之前,首先要進行軟解析,MOS上說執行3次的SQL語句會把遊標快取到PGA,這個遊標一直開著,當再有相同的SQL執行時,則跳過解析的所有過程直接去取執行計劃。

SQL> drop table test purge;
SQL> alter system flush shared_pool;
SQL> create table test as select * from dba_objects where 1<>1;
SQL> exec dbms_stats.gather_table_stats(user,'test');

硬解析:
SQL> select * from test where object_id=20;
未選定行
SQL> select * from test where object_id=30;
未選定行
SQL> select * from test where object_id=40;
未選定行
SQL> select * from test where object_id=50;
未選定行

軟解析:
SQL> var oid number;
SQL> exec :oid:=20;
SQL> select * from test where object_id=:oid;
未選定行
SQL> exec :oid:=30;
SQL> select * from test where object_id=:oid;
未選定行
SQL> exec :oid:=40;
SQL> select * from test where object_id=:oid;
未選定行
SQL> exec :oid:=50;
SQL> select * from test where object_id=:oid;
未選定行
軟軟解析:
SQL> begin
         for i in 1..4 loop
         execute immediate 'select * from test where object_id=:i' using i;
         end loop;
         end;
     /
     
SQL> col sql_text format a40   
SQL> select sql_text,s.PARSE_CALLS,loads,executions from v$sql s
        where sql_text like 'select * from test where object_id%'
        order by 1,2,3,4;
SQL_TEXT                                 PARSE_CALLS      LOADS EXECUTIONS
---------------------------------------- ----------- ---------- ----------
select * from test where object_id=20              1          1          1
select * from test where object_id=30              1          1          1
select * from test where object_id=40              1          1          1
select * from test where object_id=50              1          1          1

select * from test where object_id=:i              1          1          4
select * from test where object_id=:oid            4          1          4  

可以看到軟解析與軟軟解析相比,軟軟解析只是解析一次。

欄位解釋:
PARSE_CALLS  解析的次數

LOADS 硬解析的次數

EXECUTIONS 執行的次數




SQL執行過程圖如下:





參考文章:http://blog.csdn.net/stevendbaguo/article/details/17267161

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

相關文章