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: Oracle 8.0: select statement with order by runs too long

Re: Oracle 8.0: select statement with order by runs too long

From: Frank <fbortel_at_hotmail.com>
Date: 2000/07/26
Message-ID: <397ED7E0.4C1859C9@hotmail.com>#1/1

Bernd Rosenau wrote:
>
> Hello,
>
> the following statement needs 20 seconds for execution when run on a
> 65000 rows table:
>
> select * from folders order by selekt_nr1
>
> Selekt_nr1 is an index-field but Oracle does not seem to use the
> index.
>
> Without the ORDER BY i get an almost instant response.
>
> Any ideas ?
>
> Many thanks in advance for your help,
>
> Regards, Bernd

sort_area_size? db_file_multiblock_read_count?

Why would you like to use the index? you are retrieving *ALL* records, Index scan followed by access by rowid is slower that a full table scan. Grtz, Frank Received on Wed Jul 26 2000 - 00:00:00 CDT

Original text of this message

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