Re: Index not being used

Поиск
Список
Период
Сортировка
От Scott Marlowe
Тема Re: Index not being used
Дата
Msg-id dcc563d10708131909i31c0406dobb42523c9157d8e6@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Index not being used  (Ralph Smith <smithrn@u.washington.edu>)
Список pgsql-general
Oh, and you can use the sledge hammer of tuning by using the

set enable_xxx = off

settings for the planner.  It's not a normal way to tune most queries,
but it certainly can let you know if the problem is using the index or
not.

psql mydb
\timing
select count(*) from table where field > 12345;
set enable_seqscan=off;
select count(*) from table where field > 12345;

and compare them.  run each a few times, since the cache will affect
the performance.

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

Предыдущее
От: "Scott Marlowe"
Дата:
Сообщение: Re: Index not being used
Следующее
От: "Scott Marlowe"
Дата:
Сообщение: Re: Index not being used