Re: Index question on postgres

Поиск
Список
Период
Сортировка
От Scott Marlowe
Тема Re: Index question on postgres
Дата
Msg-id dcc563d11001072129u33eb6c78q68021d010b23ecc6@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Index question on postgres  (akp geek <akpgeek@gmail.com>)
Список pgsql-general
On Thu, Jan 7, 2010 at 10:04 PM, akp geek <akpgeek@gmail.com> wrote:
> the explain from both enviroments ??? need to be posted.
> just one quick question. Why would the index I have created not being used?
> Regards

Better explain analyze than plain eplain.
If the retrieval of data by seq scan is deemed "cheaper" than index
acces by postgresql's rather impressive planner system then a seq scan
is chosen.  There are many methods for joining and so on, so picking
the right one can give you much better speed than a simple nested loop
only planner etc.

You might want to attach the query plans as a text file to preserve format.

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

Предыдущее
От: akp geek
Дата:
Сообщение: Re: Index question on postgres
Следующее
От: Yan Cheng Cheok
Дата:
Сообщение: check the execution status of stored procedure