设为首页 收藏本站
查看: 544|回复: 0

[经验分享] ORACLE绑定变量BIND PEEKING

[复制链接]
累计签到:1 天
连续签到:1 天
发表于 2014-1-9 08:48:42 | 显示全部楼层 |阅读模式
ORACLE 在9i之后引入了bind peeking,通过bind peeking,oracle可以在硬解析的时候窥探绑定变量的值,并根据当前绑定变量的值生成执行计划。在oracle 9i之前的版本中,oracle仅仅通过统计信息来生成执行计划。
下面看一下不同版本oracle下绑定变量对执行计划的影响
SQL> alter system flush shared_pool;  

系统已更改。  

SQL> alter system set optimizer_features_enable='8.1.7';  

系统已更改。  

SQL> var v number;  
SQL> exec :v := 1;  

PL/SQL 过程已成功完成。  

SQL> select count(*) from acs_test_tab where record_type = :v;  

  COUNT(*)  
----------  
     1  

SQL> select * from table(dbms_xplan.display_cursor(null,null,'advanced'));  

PLAN_TABLE_OUTPUT  
----------------------------------------------------------------------------------------------------  
SQL_ID  3rg5r8sghcvb3, child number 0  
-------------------------------------  
select count(*) from acs_test_tab where record_type = :v  

Plan hash value: 2956728990  

--------------------------------------------------------------------------------  
| Id  | Operation     | Name               | Rows  | Bytes | Cost  |  
--------------------------------------------------------------------------------  
|   0 | SELECT STATEMENT  |                |       |       |     3 |  
|   1 |  SORT AGGREGATE   |                |     1 |     4 |       |  
|*  2 |   INDEX RANGE SCAN| ACS_TEST_TAB_RECORD_TYPE_I |     2 |     8 |     3 |  
--------------------------------------------------------------------------------  


Predicate Information (identified by operation id):  
---------------------------------------------------  

   2 - access("RECORD_TYPE"=:V)  


已选择47行。  

SQL> alter system flush shared_pool;  

系统已更改。  

SQL> alter system set optimizer_features_enable='11.2.0.3.1';  

系统已更改。  

SQL> var v number;  
SQL> exec :v := 1;  

PL/SQL 过程已成功完成。  

SQL> select count(*) from acs_test_tab where record_type = :v;  

  COUNT(*)  
----------  
     1  

SQL> select * from table(dbms_xplan.display_cursor(null,null,'advanced'));  

PLAN_TABLE_OUTPUT  
----------------------------------------------------------------------------------------------------  
SQL_ID  3rg5r8sghcvb3, child number 0  
-------------------------------------  
select count(*) from acs_test_tab where record_type = :v  

Plan hash value: 2956728990  

------------------------------------------------------------------------------------------------  
| Id  | Operation     | Name               | Rows  | Bytes | Cost (%CPU)| Time     |  
------------------------------------------------------------------------------------------------  
|   0 | SELECT STATEMENT  |                |       |       |     3 (100)|          |  
|   1 |  SORT AGGREGATE   |                |     1 |     4 |        |          |  
|*  2 |   INDEX RANGE SCAN| ACS_TEST_TAB_RECORD_TYPE_I |     1 |     4 |     3   (0)| 00:00:01 |  
------------------------------------------------------------------------------------------------  


Peeked Binds (identified by position):  
--------------------------------------  

   1 - :V (NUMBER): 1  --绑定变量窥探  

Predicate Information (identified by operation id):  
---------------------------------------------------  

   2 - access("RECORD_TYPE"=:V)  


已选择49行。  

SQL> alter system flush shared_pool;  

系统已更改。  

SQL> exec :v := 2;  

PL/SQL 过程已成功完成。  

SQL> select count(*) from acs_test_tab where record_type = :v;  

  COUNT(*)  
----------  
     50000  

SQL> select * from table(dbms_xplan.display_cursor(null,null,'advanced'));  

PLAN_TABLE_OUTPUT  
----------------------------------------------------------------------------------------------------  
SQL_ID  3rg5r8sghcvb3, child number 0  
-------------------------------------  
select count(*) from acs_test_tab where record_type = :v  

Plan hash value: 2957754476  

----------------------------------------------------------------------------------------------------  
| Id  | Operation         | Name               | Rows  | Bytes | Cost (%CPU)| Time     |  
----------------------------------------------------------------------------------------------------  
|   0 | SELECT STATEMENT      |                |       |       |   136 (100)|      |  
|   1 |  SORT AGGREGATE       |                |     1 |     4 |        |      |  
|*  2 |   INDEX FAST FULL SCAN| ACS_TEST_TAB_RECORD_TYPE_I | 48031 |   187K|   136   (1)| 00:00:02 |  
----------------------------------------------------------------------------------------------------  

Peeked Binds (identified by position):  
--------------------------------------  

   1 - :V (NUMBER): 2  --绑定变量窥探,绑定变量会影响最初硬解析的执行计划  

Predicate Information (identified by operation id):  
---------------------------------------------------  

   2 - filter("RECORD_TYPE"=:V)  


已选择49行。  

使用绑定变量窥测的好处是:可以帮助优化器在第一次硬解析时选择最优的执行计划。但是同时这也是其弊端:在第一次硬解析后,后面发生的所有解析都会使用第一次硬解析生成的执行计划,如果数据的分布是均匀的,问题不大,如果数据分布式倾斜的,那么第一次硬解析生成的执行计划未必是最优的,甚至可能是非常糟糕的。例如:
[sql] view plaincopyprint?
SQL> show parameter optimizer_feat  

NAME                     TYPE    VALUE  
------------------------------------ ----------- ------------------------------  
optimizer_features_enable        string  11.2.0.3.1  
SQL> alter system flush shared_pool;  

系统已更改。  

SQL> var v number;  
SQL> exec :v := 2;  

PL/SQL 过程已成功完成。  

SQL> select count(*) from acs_test_tab where record_type = :v;  

  COUNT(*)  
----------  
     50000  

SQL> select * from table(dbms_xplan.display_cursor);  

PLAN_TABLE_OUTPUT  
----------------------------------------------------------------------------------------------------  
SQL_ID  3rg5r8sghcvb3, child number 0  
-------------------------------------  
select count(*) from acs_test_tab where record_type = :v  

Plan hash value: 2957754476  

----------------------------------------------------------------------------------------------------  
| Id  | Operation         | Name               | Rows  | Bytes | Cost (%CPU)| Time     |  
----------------------------------------------------------------------------------------------------  
|   0 | SELECT STATEMENT      |                |       |       |   136 (100)|      |  
|   1 |  SORT AGGREGATE       |                |     1 |     4 |        |      |  
|*  2 |   INDEX FAST FULL SCAN| ACS_TEST_TAB_RECORD_TYPE_I | 48031 |   187K|   136   (1)| 00:00:02 |  
----------------------------------------------------------------------------------------------------  

Predicate Information (identified by operation id):  
---------------------------------------------------  

   2 - filter("RECORD_TYPE"=:V)  


已选择19行。  

SQL> exec :v := 1  

PL/SQL 过程已成功完成。  

SQL> select count(*) from acs_test_tab where record_type = :v;  

  COUNT(*)  
----------  
     1  

SQL> select * from table(dbms_xplan.display_cursor);  

PLAN_TABLE_OUTPUT  
----------------------------------------------------------------------------------------------------  
SQL_ID  3rg5r8sghcvb3, child number 0  
-------------------------------------  
select count(*) from acs_test_tab where record_type = :v  

Plan hash value: 2957754476  

----------------------------------------------------------------------------------------------------  
| Id  | Operation         | Name               | Rows  | Bytes | Cost (%CPU)| Time     |  
----------------------------------------------------------------------------------------------------  
|   0 | SELECT STATEMENT      |                |       |       |   136 (100)|      |  
|   1 |  SORT AGGREGATE       |                |     1 |     4 |        |      |  
|*  2 |   INDEX FAST FULL SCAN| ACS_TEST_TAB_RECORD_TYPE_I | 48031 |   187K|   136   (1)| 00:00:02 |  
----------------------------------------------------------------------------------------------------  

Predicate Information (identified by operation id):  
---------------------------------------------------  

   2 - filter("RECORD_TYPE"=:V)  


已选择19行。  

SQL> select count(*) from acs_test_tab where record_type = 1;  

  COUNT(*)  
----------  
     1  

SQL> select * from table(dbms_xplan.display_cursor);  

PLAN_TABLE_OUTPUT  
----------------------------------------------------------------------------------------------------  
SQL_ID  1pxm87f6yd0bp, child number 0  
-------------------------------------  
select count(*) from acs_test_tab where record_type = 1  

Plan hash value: 2956728990  

------------------------------------------------------------------------------------------------  
| Id  | Operation     | Name               | Rows  | Bytes | Cost (%CPU)| Time     |  
------------------------------------------------------------------------------------------------  
|   0 | SELECT STATEMENT  |                |       |       |     3 (100)|          |  
|   1 |  SORT AGGREGATE   |                |     1 |     4 |        |          |  
|*  2 |   INDEX RANGE SCAN| ACS_TEST_TAB_RECORD_TYPE_I |     1 |     4 |     3   (0)| 00:00:01 |  
------------------------------------------------------------------------------------------------  

Predicate Information (identified by operation id):  
---------------------------------------------------  

   2 - access("RECORD_TYPE"=1)  


已选择19行。  

对于变量v的取值为1的执行计划和采用常量1的执行计划性能差距还是比较大的。

总结:oracle在9i后引入变量窥测技术,该技术对于数据分布均匀的数据是非常合适的,但是对于分布倾斜的数据或者在OLAP系统中是不建议使用的。


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-13665-1-1.html 上篇帖子: Oracle数据库的启动和关闭 下篇帖子: Oracle-07445[kgghash]:Oracle BUG导致更新LOB字段时进程被KILL掉
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表