1
0
forked from docs/doc-exports
doc-exports/docs/dws/dev/dws_04_0459.html
Lu, Huayi a24ca60074 DWS DEVELOPER 811 version
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: Lu, Huayi <luhuayi@huawei.com>
Co-committed-by: Lu, Huayi <luhuayi@huawei.com>
2023-01-19 13:37:49 +00:00

4.0 KiB

Stream Operation Hints

Function

These hints specify a stream operation, which can be broadcast or redistribute.

Syntax

1
[no] broadcast|redistribute(table_list)

Parameter Description

  • no indicates that the specified hint will not be used for a join.

Examples

Hint the query plan in Examples as follows:

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 ...

In the original plan, the join result of store_sales, store_returns, item, and store is redistributed before it is joined with customer. After the hinting, the redistribution is disabled and the join order is retained. The optimized plan is as follows: