Re: Very large IN-clause is slow, but how to rewrite it?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Very large IN-clause is slow, but how to rewrite it?
Дата
Msg-id 7794.1172422591@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Very large IN-clause is slow, but how to rewrite it?  (Richard Jones <rich@annexia.org>)
Ответы Re: Very large IN-clause is slow, but how to rewrite it?  (Joe Conway <mail@joeconway.com>)
Список pgsql-sql
Richard Jones <rich@annexia.org> writes:
> I've been profiling a PG database / mix of applications and found that
> one statement which takes a very long time to execute is:

PG 8.2 does better with long IN-lists ... although if the list is so
long as to be fetching a significant fraction of the table, you'll still
have problems.  In that case I'd advise putting the values into a temp
table, ANALYZEing same, and doing "WHERE foo IN (SELECT x FROM tmp_table)".
        regards, tom lane


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

Предыдущее
От: Oleg Bartunov
Дата:
Сообщение: Re: Very large IN-clause is slow, but how to rewrite it?
Следующее
От: Joe Conway
Дата:
Сообщение: Re: Very large IN-clause is slow, but how to rewrite it?