Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: PARALLEL QUERY
Deepak,
More than likely the optimizer determined that a parallel query with just 4 PX slaves is not more beneficial than a serial scan, whereas 16 slaves is more beneficial. I've never seen this before, but then again our databases are configured to maximize parallel performance, so any parameter related to parallelism is set to a larger than average value.
To validate what the optimizer is doing, set event 10053 for each query and review the optimizer's decisions.
Also, remember that hints are just that, a hint or suggestion, not a "force".
Dave
Hi Experts,
Have a problem related to parallel query execution. I have a setup of Oracle 10g (10.2.0.3) on solaris 64 bit and on a 16 core CPU system.
When I execute parallel hint in the query the following happens.
Does not use PQ processes for the query:
select /*+ parallel(bt,4) */ from big_table bt;
Does use PQ processes for the query:
select /*+ parallel(bt,16) */ from big_table bt;
Please help me in understanding why this happens.
-- Regards, Deepak Oracle DBA ************************************************************************* The information contained in this communication is confidential, is intended only for the use of the recipient named above, and may be legally privileged. If the reader of this message is not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please resend this communication to the sender and delete the original message or any copy of it from your computer system. Thank you. ************************************************************************* -- http://www.freelists.org/webpage/oracle-lReceived on Tue Oct 16 2007 - 06:58:36 CDT
![]() |
![]() |