Oracle对集群的并行提示

时间:2015-10-10 02:15:57

标签: sql oracle performance parallel-processing query-optimization

我想使用并行提示,在我的查询中提供最佳性能,这是一个等连接查询,其中两个表位于一个集群中,而连接列是一个集群索引。

我不确定是否应该在其中一个表PARALLEL(table1, 4),两个表PARALLEL(4)或群集索引PARALLEL_INDEX(index_name, 4)上使用并行选项?

以下是我的询问:

SELECT /*+ USE_HASH(a, b)  */a.name, b.price
FROM Customer a, Sales b 
WHERE b.Cust_id < 2000 
AND b.Cust_id = a.Cust_id;

以下是此查询的执行计划:

enter image description here

0 个答案:

没有答案