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 -> index use

index use

From: Tuning <c_armanet_at_hotmail.com>
Date: Thu, 18 Jul 2002 10:24:23 +0200
Message-ID: <ah5tu8$3e$1@wanadoo.fr>


Hello,

I've strange reactions when trying to use an index for a query, to compare different explain plans (Oracle 8.1.7) :

I've a test DB :

I know that this index has a poor selectivity, but in order to compare explain plans,
for the query :

    select entreprise_id, count(salarie_id) from salarie group by entreprise_id

the explain plan gives me a FTS on ENTREPRISE (which is normal, due to the poor selectivity of the index),
but even with hint /*+index(salarie entreprise_of_salarie_fk)*/ ?!
(and I can't test with /*+first_rows*/, due to the GROUP BY clause)

Q1 : Why does Oracle not want to use this index when asking it to do so?
(all tables and indexes are analyzed with compute option)

Then, I dropped this index and rebuilt it in a bitmap index (I know : too much distinct values for a bitmap index!) After analyzing it, the same query uses this index!!

Q2 : What do you think about this scenario?

        And what could be the solution for optimizing access to such a column (entreprise_id), index or not?

Thanks for your interest :-)

Cordially,

Jack. Received on Thu Jul 18 2002 - 03:24:23 CDT

Original text of this message

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