oracle plan hash,OMS中关于PLAN_HASH_VALUE为0的解读

In this Document

Purpose

Scope

Details

APPLIES TO:

Oracle Database - Enterprise Edition -Version 10.1.0.2 and later

Oracle Database - Standard Edition -Version 10.1.0.2 and later

Oracle Database - Personal Edition -Version 10.1.0.2 and later

Information in this document applies to anyplatform.

PURPOSE

Outline a reason why a SQL statement may havea PLAN_HASH_VALUE of zeroin V$SQL

SCOPE

Thisinformation may assist people trying to understand details of statements inV$SQL

DETAILS

The V$SQL view externalises variousinformation about SQL statements that are being stored in the shared pool tousers and one of these is the PLAN_HASH_VALUE which is a reference to theaccess path that has been generated for the a query. This is usually a largenumber but sometimes it is zero. When you are looking at a DELETE or an INSERTwithout a query, then a zero PLAN_HASH_VALUE is quite normal as there is noplan. In these cases no access path has been calculated and none is needed.

However it is possible to sometimes see aSELECT with a zero PLAN_HASH_VALUE which is less easy to explain.

The main reason for this is  key to this is that the query uses bindvariables and the cursor has been parsed BUT the generation of an executionplan has been deferred until execution time since that is when the bind valueswill be supplied (which may have a significant bearing on the access pathgenerated). Until the query is 'bound' and executed, there is no plan and sothe PLAN_HASH_VALUE will be zero.

This can be illustrated through an example:

If we create a cursor containing a bindvariable parse it, but then do not execute it and do not link any bind valuesto it, then it will defer the parsing until execution time (when you supply thebinds). Here we have used DBMS_SQL.PARSE() to open a cursor using a test SQLstatement containing a bind variable: 'select dummy zero from dual where dummy> :x' :

SQL> declare

cursor_name INTEGER;

begin

cursor_name := dbms_sql.open_cursor;

DBMS_SQL.PARSE(cursor_name, 'select dummyzero from dual where dummy > :x', DBMS_SQL.NATIVE);

DBMS_SQL.CLOSE_CURSOR(cursor_name);

END;

/

PL/SQL procedure successfully completed.

At this point there is an entry placed in V$SQL for the parsed SQLstatement, but because the plan generation has been deferred, thePLAN_HASH_VALUE is zero:

SQL> select sql_id ,sql_text,PLAN_HASH_VALUE from v$sql where sql_text like 'sel%zero%';

SQL_ID

-------------

SQL_TEXT

------------------------------------------------------------------------------------------------------------------------------------

PLAN_HASH_VALUE

---------------

...

fzgydxr7yjcxd

select dummy zero from dual where dummy> :x

0

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值