Re: analyzing intermediate query

Поиск
Список
Период
Сортировка
От Andrus
Тема Re: analyzing intermediate query
Дата
Msg-id 772C0DC9C4A04AA4939EB50F2707A791@andrusnotebook
обсуждение исходный текст
Ответ на Re: analyzing intermediate query  (Scott Carey <scott@richrelevance.com>)
Ответы Re: analyzing intermediate query  (Scott Carey <scott@richrelevance.com>)
Список pgsql-performance
Scott,

>Often times, switching an inner subselect that requires a distinct to a
>group by on that column yields better results.  In this case, the IN should
>be equivalent, so it probably will not help.  This would look like:

SELECT dok.*
 FROM dok
JOIN  (SELECT dokumnr FROM  temptbl GROUP BY dokumnr ) x USING(dokumnr);

Thank you. This may be great idea.
I changed my query to use GROUP BY instead of DISTINCT

>Whether that hepls depends on how big dokumnr is and where the query
>bottleneck is.

I'm wondering how this can solve the issue when there is single or few
dokumnr columns.
Planner still thinks that temptbl projection contains 1000 rows and uses seq
scan instead of using bitmap index on dok table.

I tried

SELECT dok.*
 FROM dok
JOIN  (SELECT dokumnr FROM  temptbl GROUP BY dokumnr ANALYZE ) x
USING(dokumnr);

but got error.

> Note there are subtle differences between DISTINCT and GROUP BY with
> respect to nulls.

dokumnr is int type and is not null always.

Andrus.


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

Предыдущее
От: Scott Carey
Дата:
Сообщение: Re: analyzing intermediate query
Следующее
От: Scott Carey
Дата:
Сообщение: Re: analyzing intermediate query