Chinaunix首页 | 论坛 | 博客
  • 博客访问: 690521
  • 博文数量: 176
  • 博客积分: 4791
  • 博客等级: 上校
  • 技术积分: 1921
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-24 18:47
个人简介

it江湖漂,怎能不挨刀;一朝机器当,看你怎么着!

文章分类

全部博文(176)

文章存档

2014年(2)

2012年(17)

2011年(27)

2010年(18)

2009年(6)

2008年(21)

2007年(43)

2006年(42)

分类: LINUX

2012-03-29 16:40:53

如何看一个SQL的真实的执行计划,下面是在ORACLE 10G里执行的命令:
SQL> select hash_value,child_number,sql_text from v$sql where sql_text like 'select value, consumer_group from resource_group_mapping$ where attribute %';
 
HASH_VALUE CHILD_NUMBER SQL_TEXT
---------- ------------ --------------------------------------------------------------------------------
2332139416            0 select value, consumer_group from resource_group_mapping$ where attribute = :1 a
 
SQL> select * from table(dbms_xplan.display_cursor(2332139416,0,'advanced'));
 
PLAN_TABLE_OUTPUT
--------------------------------------------------------------------------------
HASH_VALUE  2332139416, child number 0
select value, consumer_group from resource_group_mapping$ where
attribute = :1 and status = 'ACTIVE'
NOTE: cannot fetch plan for HASH_VALUE: 2332139416, CHILD_NUMBER: 0
      Please verify value of HASH_VALUE and CHILD_NUMBER;
阅读(999) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~