当前位置: 首页 > article >正文

HINT的30个用法

在sql语句优化过程中,经常会用到HINT,
以下是在sql优化过程中常见oRACLE中"hint"的30个用法1. /*+all_rows*/
表明对语句块选择基于开销的优化方法,并获得最佳吞吐量,使资源消耗最小化.
例如:
select /*+all+_rows*/ emp_no,emp_nam,dat_in from bsempms where emp_no='scott'; 


2. /*+first_rows*/
表明对语句块选择基于开销的优化方法,并获得最佳响应时间,使资源消耗最小化.
例如:
select /*+first_rows*/ emp_no,emp_nam,dat_in from bsempms where emp_no='scott';


3. /*+choose*/
表明如果数据字典中有访问表的统计信息,将基于开销的优化方法,并获得最佳的吞吐量;
表明如果数据字典中没有访问表的统计信息,将基于规则开销的优化方法;
例如:
select /*+choose*/ emp_no,emp_nam,dat_in from bsempms where emp_no='scott';


4. /*+rule*/


表明对语句块选择基于规则的优化方法.


例如:


select /*+ rule */ emp_no,emp_nam,dat_in from bsempms where emp_no='scott'; 


5. /*+full(table)*/


表明对表选择全局扫描的方法.


例如:


select /*+full(a)*/ emp_no,emp_nam from bsempms a where emp_no='scott';


6. /*+rowid(table)*/


提示明确表明对指定表根据rowid进行访问.


例如:


select /*+rowid(bsempms)*/ * from bsempms where rowid>='aaaaaaaaaaaaaa'


and emp_no='scott';


7. /*+cluster(table)*/ 


提示明确表明对指定表选择簇扫描的访问方法,它只对簇对象有效.


例如:


select /*+cluster */ bsempms.emp_no,dpt_no from bsempms,bsdptms


where dpt_no='tec304' and bsempms.dpt_no=bsdptms.dpt_no;


8. /*+index(table index_name)*/


表明对表选择索引的扫描方法.


例如:


select /*+index(bsempms sex_index) use sex_index because there are fewmale bsempms */ from bsempms where sex='m';


9. /*+index_asc(table index_name)*/


表明对表选择索引升序的扫描方法.


例如:


select /*+index_asc(bsempms pk_bsempms) */ from bsempms where dpt_no='scott';


10. /*+index_combine*/


为指定表选择位图访问路经,如果index_combine中没有提供作为参数的索引,将选择出位图索引的布尔组合方式.


例如:


select /*+index_combine(bsempms sal_bmi hiredate_bmi)*/ * from bsempms


where sal<5000000 and hiredate<sysdate;


11. /*+index_join(table index_name)*/


提示明确命令优化器使用索引作为访问路径.


例如:


select /*+index_join(bsempms sal_hmi hiredate_bmi)*/ sal,hiredate


from bsempms where sal<60000;


12. /*+index_desc(table index_name)*/


表明对表选择索引降序的扫描方法.


例如:


select /*+index_desc(bsempms pk_bsempms) */ from bsempms where dpt_no='scott';


13. /*+index_ffs(table index_name)*/


对指定的表执行快速全索引扫描,而不是全表扫描的办法.


例如:


select /*+index_ffs(bsempms in_empnam)*/ * from bsempms where dpt_no='tec305';


14. /*+add_equal table index_nam1,index_nam2,...*/


提示明确进行执行规划的选择,将几个单列索引的扫描合起来.


例如:


select /*+index_ffs(bsempms in_dptno,in_empno,in_sex)*/ * from bsempms where emp_no='scott' and dpt_no='tdc306';


15. /*+use_concat*/


对查询中的where后面的or条件进行转换为union all的组合查询.


例如:


select /*+use_concat*/ * from bsempms where dpt_no='tdc506' and sex='m';


16. /*+no_expand*/


对于where后面的or 或者in-list的查询语句,no_expand将阻止其基于优化器对其进行扩展.


例如:


select /*+no_expand*/ * from bsempms where dpt_no='tdc506' and sex='m';


17. /*+nowrite*/


禁止对查询块的查询重写操作.


18. /*+rewrite*/


可以将视图作为参数.


19. /*+merge(table)*/


能够对视图的各个查询进行相应的合并.


例如:


select /*+merge(v) */ a.emp_no,a.emp_nam,b.dpt_no from bsempms a (selet dpt_no


,avg(sal) as avg_sal from bsempms b group by dpt_no) v where a.dpt_no=v.dpt_no


and a.sal>v.avg_sal;


20. /*+no_merge(table)*/


对于有可合并的视图不再合并.


例如:


select /*+no_merge(v) */ a.emp_no,a.emp_nam,b.dpt_no from bsempms a (select dpt_no,avg(sal) as avg_sal from bsempms b group by dpt_no) v where a.dpt_no=v.dpt_no and a.sal>v.avg_sal;


21. /*+ordered*/


根据表出现在from中的顺序,ordered使oracle依此顺序对其连接.


例如:


select /*+ordered*/ a.col1,b.col2,c.col3 from table1 a,table2 b,table3 c where a.col1=b.col1 and b.col1=c.col1;


22. /*+use_nl(table)*/


将指定表与嵌套的连接的行源进行连接,并把指定表作为内部表.


例如:


select /*+ordered use_nl(bsempms)*/ bsdptms.dpt_no,bsempms.emp_no,bsempms.emp_nam from bsempms,bsdptms where bsempms.dpt_no=bsdptms.dpt_no;


23. /*+use_merge(table)*/


将指定的表与其他行源通过合并排序连接方式连接起来.


例如:


select /*+use_merge(bsempms,bsdptms)*/ * from bsempms,bsdptms where bsempms.dpt_no=bsdptms.dpt_no;


24. /*+use_hash(table)*/


将指定的表与其他行源通过哈希连接方式连接起来.


例如:


select /*+use_hash(bsempms,bsdptms)*/ * from bsempms,bsdptms where bsempms.dpt_no=bsdptms.dpt_no;


25. /*+driving_site(table)*/


强制与oracle所选择的位置不同的表进行查询执行.


例如:


select /*+driving_site(dept)*/ * from bsempms,dept@bsdptms where bsempms.dpt_no=dept.dpt_no;


26. /*+leading(table)*/


将指定的表作为连接次序中的首表.


27. /*+cache(table)*/


当进行全表扫描时,cache提示能够将表的检索块放置在缓冲区缓存中最近最少列表lru的最近使用端


例如:


select /*+full(bsempms) cahe(bsempms) */ emp_nam from bsempms;


28. /*+nocache(table)*/


当进行全表扫描时,cache提示能够将表的检索块放置在缓冲区缓存中最近最少列表lru的最近使用端


例如:


select /*+full(bsempms) nocahe(bsempms) */ emp_nam from bsempms;


29. /*+append*/


直接插入到表的最后,可以提高速度.


INSERT /*+APPEND*/ INTO TEST1 SELECT * FROM TEST4 ;


30. /*+noappend*/


通过在插入语句生存期内停止并行模式来启动常规插入.


INSERT /*+NOAPPEND*/ INTO TEST1 SELECT * FROM TEST4 ; 
http://www.lryc.cn/news/2417705.html

相关文章:

  • ARP协议详解:了解数据包转发与映射机制背后的原理
  • Source Insight 4.0使用和解决问题
  • 神经网络模型训练中的相关概念:Epoch,Batch,Batch size,Iteration
  • Yandex企业邮箱注册
  • nsfw什么颜色_“ NSFW”是什么意思,以及如何使用它?
  • 公开密钥加密算法RSA的理论概述
  • Java面试题及答案整理汇总
  • Rsync教程--linux服务器文件实时同步
  • 前端关于单点登录的知识
  • ssh安装与配置(详解版)
  • zlib 库的使用
  • Restful风格详解
  • 一文带你了解SOA接口测试
  • stack overflow异常分析及解决办法
  • Hdfs(五)DataNode
  • PNG文件格式详解
  • phoenix 使用技巧
  • Lombok常用注解总结
  • (P33-P35)lambda表达式语法,lambda表达式注意事项,lambda表达式本质
  • mariaDB(mysql数据库)-安装配置和使用
  • 理解:QPS、TPS、RT、吞吐量
  • MinGW安装教程
  • Java中 static 关键字相关的用法
  • ADB 安装 + 打驱动全教程
  • 不同的存储库(Repository)模式实现
  • 开源项目 `signature` 使用教程
  • GCC详解-Binutils工具之strip
  • 消息传递机制之Handler使用总结
  • 一分钟快速过安卓四大组件——Activity篇
  • 2024年最新GIMP(Linux下的Photoshop)-KOS安装教程_linux photoshop