您好,登錄后才能下訂單哦!
如何理解oracle硬解析、軟解析、軟軟解析,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
硬解析和軟解析有相同的一步,而軟軟解析與硬解析、軟解析完全不一樣。先來說下理論上的東西,然后來做個實驗。
硬解析過程:
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執行過程圖如下:
關于如何理解oracle硬解析、軟解析、軟軟解析問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。