当前位置:   article > 正文

openGauss学习笔记-252 openGauss性能调优-使用Plan Hint进行调优-Scan方式的Hint

openGauss学习笔记-252 openGauss性能调优-使用Plan Hint进行调优-Scan方式的Hint

openGauss学习笔记-252 openGauss性能调优-使用Plan Hint进行调优-Scan方式的Hint

252.1 功能描述

指明scan使用的方法,可以是tablescan、indexscan和indexonlyscan。

252.2 语法格式

[no] tablescan|indexscan|indexonlyscan(table [index])
  • 1

252.3 参数说明

  • no表示hint的scan方式不使用。
  • table表示hint指定的表,只能指定一个表,如果表存在别名应优先使用别名进行hint。
  • index表示使用indexscan或indexonlyscan的hint时,指定的索引名称,当前只能指定一个。

img 说明:
对于indexscan或indexonlyscan,只有hint的索引属于hint的表时,才能使用该hint。
scan hint支持在行列存表、obs表、子查询表上指定。

252.4 示例

为了hint使用索引扫描,需要首先在表item的i_item_sk列上创建索引,名称为i。

create index i on item(i_item_sk);
  • 1

示例中原语句使用如下hint:

explain
select /*+ indexscan(item i) */ i_product_name product_name ...
  • 1
  • 2

该hint表示:item表使用索引i进行扫描。生成计划如下所示:

img

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/322795
推荐阅读
相关标签