oracle sql_profile綁定異常處置: 一 建立測(cè)試表 create table a nologging as select * from all_objects; 二 準(zhǔn)備工作 找到sql_Id='aq03p7muwgvq5' select * from V$sql where sql_text like '% from a where object_id=3%'; 找到全表的outline: 方法一:dba_hist_sql_plan/v$sql_plan都可以 select extractvalue(value(d), '/hint') as outline_hints from xmltable('/*/outline_data/hint' passing ( select xmltype(other_xml) as xmlval from dba_hist_sql_plan where sql_id = '&sql_id' and plan_hash_value=&plan_hash_value and other_xml is not null)) d 方法二: select * from dbms_xplan.display_awr('aq03p7muwgvq5',0,'outline'); /*+ BEGIN_OUTLINE_DATA IGNORE_OPTIM_EMBEDDED_HINTS OPTIMIZER_FEATURES_ENABLE('11.2.0.4') DB_VERSION('11.2.0.4') ALL_ROWS OUTLINE_LEAF(@"SEL$1") FULL(@"SEL$1" "A"@"SEL$1") END_OUTLINE_DATA */ declare v_hints sys.sqlprof_attr; v_sqltext clob; begin select sql_fulltext into v_sqltext from v$sql where sql_id='aq03p7muwgvq5' and rownum<2; v_hints:=sys.sqlprof_attr(q'[FULL(@"SEL$1" "A"@"SEL$1")]'); dbms_sqltune.import_sql_profile(v_sqltext,v_hints,'sql_full',force_match=>true,replace=>true); end; 建立索引 create index I_ind_object_id_com on a(object_id,object_name) nologging; 查看執(zhí)行計(jì)劃,并沒(méi)有走索引: Execution Plan ---------------------------------------------------------- Plan hash value: 2248738933 -------------------------------------------------------------------------- | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | -------------------------------------------------------------------------- | 0 | SELECT STATEMENT | | 1 | 98 | 177 (1)| 00:00:01 | |* 1 | TABLE ACCESS FULL| A | 1 | 98 | 177 (1)| 00:00:01 | -------------------------------------------------------------------------- Predicate Information (identified by operation id): --------------------------------------------------- 1 - filter("OBJECT_ID"=3) Note ----- - SQL profile "sql_full" used for this statement Statistics ---------------------------------------------------------- 7 recursive calls 0 db block gets 1254 consistent gets 1246 physical reads 0 redo size 1606 bytes sent via SQL*Net to client 519 bytes received via SQL*Net from client 2 SQL*Net roundtrips to/from client 0 sorts (memory) 0 sorts (disk) 1 rows processed 刪除profile begin dbms_sqltune.drop_sql_profile('sql_full'); end; 再次執(zhí)行sql,找到走索引的outline 當(dāng)然你也可以用SQLT里的coe_xfr_sql_profile.sql或者create_sql_profile.sql生成sql_profile; 這里有一點(diǎn)比較扯的是用完整的outline,寫(xiě)進(jìn)去不報(bào)錯(cuò),但執(zhí)行計(jì)劃不走sql_profile里約定的內(nèi)容; declare v_hints sys.sqlprof_attr; v_sqltext clob; begin select sql_fulltext into v_sqltext from v$sql where sql_id='aq03p7muwgvq5' and rownum<2; v_hints:=sys.sqlprof_attr( q'[BEGIN_OUTLINE_DATA]', q'[IGNORE_OPTIM_EMBEDDED_HINTS]', q'[OPTIMIZER_FEATURES_ENABLE('11.2.0.4')]', q'[DB_VERSION('11.2.0.4')], q'[ALL_ROWS]', q'[OUTLINE_LEAF(@"SEL$1")]', q'[FULL(@"SEL$1" "A"@"SEL$1")]', q'[END_OUTLINE_DATA]'); dbms_sqltune.import_sql_profile(v_sqltext,v_hints,'sql_full',force_match=>true,replace=>true); end; |
免責(zé)聲明:本站部分文章和圖片均來(lái)自用戶投稿和網(wǎng)絡(luò)收集,旨在傳播知識(shí),文章和圖片版權(quán)歸原作者及原出處所有,僅供學(xué)習(xí)與參考,請(qǐng)勿用于商業(yè)用途,如果損害了您的權(quán)利,請(qǐng)聯(lián)系我們及時(shí)修正或刪除。謝謝!
始終以前瞻性的眼光聚焦站長(zhǎng)、創(chuàng)業(yè)、互聯(lián)網(wǎng)等領(lǐng)域,為您提供最新最全的互聯(lián)網(wǎng)資訊,幫助站長(zhǎng)轉(zhuǎn)型升級(jí),為互聯(lián)網(wǎng)創(chuàng)業(yè)者提供更加優(yōu)質(zhì)的創(chuàng)業(yè)信息和品牌營(yíng)銷(xiāo)服務(wù),與站長(zhǎng)一起進(jìn)步!讓互聯(lián)網(wǎng)創(chuàng)業(yè)者不再孤獨(dú)!
掃一掃,關(guān)注站長(zhǎng)網(wǎng)微信