更新时间:2022-06-13 GMT+08:00
Stream方式的Hint
功能描述
指明stream使用的方法,可以为broadcast和redistribute。
语法格式
1 |
[no] broadcast|redistribute(table_list)
|
参数说明
- no表示hint的stream方式不使用。
- table_list为进行stream操作的单表或多表join结果集,见参数说明。
示例
对示例中原语句使用如下hint:
1 2 |
explain
select /*+ no redistribute(store_sales store_returns item store) leading(((store_sales store_returns item store) customer)) */ i_product_name product_name ...
|
原计划中,(store_sales store_returns item store)和customer做join时,前者做了重分布,此hint表示禁止前者混合表做重分布,但仍然保持join顺序,则生成计划如下所示:
父主题: 使用Plan Hint进行调优