Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> GROUP BY disables indexes and parallel query

GROUP BY disables indexes and parallel query

From: Dragon Fly <dfly_at_infinet.com>
Date: 1997/04/07
Message-ID: <01bc43ad$95d504a0$5ef267ce@p2390>#1/1

Here is what I've got:
SELECT A, B, C from MYTABLE WHERE A<=5 and B=9701; runs for 10 secs on 12-million row MYTABLE;

But when I do
SELECT A,B,COUNT(*) FROM MYTABLE WHERE A<=5 AND B=9701 GROUP BY A,B; runs for 20 mins.

Looks like GROUP BY clause disables both indexes and parallel query on MYTABLE.
Why is that and how to avoid it?

Thanks,
Sergei Received on Mon Apr 07 1997 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US