Oracle Parallel Execution of SQL Statements

前端之家收集整理的这篇文章主要介绍了Oracle Parallel Execution of SQL Statements前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

oracle 当查询比较慢的时候,可以考虑并发查询,可以很快出结果,预计比之前不加快2-4倍。

Parallel Query Intra- and Inter-Operation Example

As an example of parallel query with intra- and inter-operation parallelism,consider a more complex query:

SELECT /*+ PARALLEL(employees 4) PARALLEL(departments 4) USE_HASH(employees) 
ORDERED */
       MAX(salary),AVG(salary) 
FROM employees,departments
WHERE employees.department_id = departments.department_id 
GROUP BY employees.department_id;

http://docs.oracle.com/cd/B10500_01/server.920/a96524/c20paral.htm

原文链接:https://www.f2er.com/oracle/211256.html

猜你在找的Oracle相关文章