Re: analyzing intermediate query

Поиск
Список
Период
Сортировка
Искать
От
Andrus
Тема
Re: analyzing intermediate query
Дата
Msg-id
772C0DC9C4A04AA4939EB50F2707A791@andrusnotebook
Ответ на
Список
Дерево обсуждения
analyzing intermediate query "Andrus" <kobruleht2@hot.ee>
Re: analyzing intermediate query PFC <lists@peufeu.com>
Re: analyzing intermediate query "Andrus" <kobruleht2@hot.ee>
Re: analyzing intermediate query PFC <lists@peufeu.com>
Re: analyzing intermediate query "Andrus" <kobruleht2@hot.ee>
Re: analyzing intermediate query PFC <lists@peufeu.com>
Re: analyzing intermediate query "Andrus" <kobruleht2@hot.ee>
Re: analyzing intermediate query Scott Carey <scott@richrelevance.com>
Re: analyzing intermediate query "Andrus" <kobruleht2@hot.ee>
Re: analyzing intermediate query Scott Carey <scott@richrelevance.com>
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
Дата:
От: Scott Carey
Дата:
FAQ