Re: Index doesn't appear to be working.

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: Index doesn't appear to be working.
Дата
Msg-id 20020302234538.Y58150-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на Index doesn't appear to be working.  ("John Oakes" <john@networkproductions.net>)
Ответы Re: Index doesn't appear to be working.  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-sql
On Sat, 2 Mar 2002, John Oakes wrote:

> I have a table with a column titled 'passfail' that only contains either a P
> for pass or an F for fail.  The table name is 'one'.  I created the index on
> the table with:
>
> CREATE INDEX one_passfail_idx ON one USING btree (passfail);
>
> I then do:
>
> VACUUM ANALYZE one;
>
> Then I do an explain on this query:
>
> SELECT * FROM one where passfail = 'P';
>
> and it tells me:
>
> Seq Scan on one (cost=0.00..263.02 rows=5613 width=56)
>
> Shouldn't it tell me
>
> Index Scan using one_passfail_idx on one?
>
> Why isn't it using the index?  This query returns about 5,600 of 10,000
> records.  It is faster to just do a seq scan because it returns such a high
> percentage or records?  Thanks, I appreciate the help!

Usually the seq scan will be faster in this kind of situation.  Because
the system needs to load the matching rows anyway, it's likely to result
in reading all the blocks of the table and paying a penalty for seeking
around the file.




В списке pgsql-sql по дате отправления:

Предыдущее
От: Masaru Sugawara
Дата:
Сообщение: Re: using LIMIT only on primary table
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Index doesn't appear to be working.