Re: How to query and index for customer with lastname and city

Поиск
Список
Период
Сортировка
От hubert depesz lubaczewski
Тема Re: How to query and index for customer with lastname and city
Дата
Msg-id 9e4684ce0603040623p24f4672bk55a0a303152138aa@mail.gmail.com
обсуждение исходный текст
Ответ на Re: How to query and index for customer with lastname  (Joost Kraaijeveld <J.Kraaijeveld@Askesis.nl>)
Ответы Re: How to query and index for customer with lastname and city  (Kevin Brown <blargity@gmail.com>)
Список pgsql-performance
On 3/4/06, Joost Kraaijeveld <J.Kraaijeveld@askesis.nl> wrote:
> > how many record do you have in the customers table?
> 368915 of which 222465 actually meet the condition.
> >From what I understand from the mailing list, PostgreSQL prefers a table
> scan whenever it expects that the number of records in the resultset
> will be ~ > 10 % of the total number of records in the table. Which
> explains the table scan for customers, but than again, it does not
> explain why it uses the index on addresses: it has 369337 addresses of
> which 158003 meet the condition


bitmap index scan is faster than sequential table scan. that's all. it
was introduced in 8.1 as far as i remember.
basically - i doubt if you can get better performace from query when
the result row-count is that high.

out of curiosity though - why do you need so many rows? it's not
possible to view them, nor do anything meaningful with 200 thousand
rows!

depesz

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

Предыдущее
От: Joost Kraaijeveld
Дата:
Сообщение: Re: How to query and index for customer with lastname
Следующее
От: "Jim C. Nasby"
Дата:
Сообщение: Re: Bad row estimates