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

Home -> Community -> Usenet -> c.d.o.tools -> Re: Tuning group by sql

Re: Tuning group by sql

From: Noodles <noodles_at_aol.com>
Date: 2000/02/17
Message-ID: <20000216194205.14472.00001027@ng-cr1.aol.com>#1/1

Is the question why aren't your indexes used or why is the SQL so slow ? Previous posts explained that sometimes full table scans are actually required.

If you DON'T need the output of this "group by" SQL in a very timely fashion, consider using a snapshot. This would store the result set of your SQL in a real server object and then you could just use select * from <snapshot_object>.

We use many snapshots where data only has to be refreshed every 24 hours.

Cliff Received on Thu Feb 17 2000 - 00:00:00 CST

Original text of this message

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