In this question Oracle: why doesn't use parallel execution?
and this Oracle documentation http://docs.oracle.com/cd/B10500_01/server.920/a96524/c20paral.htm#26156
They're comenting out a paralell statement like such:
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;
Why are they doing this?