Re: what is the maximum number of rows in a table in postgresql 8.1

Поиск
Список
Период
Сортировка
От Craig Ringer
Тема Re: what is the maximum number of rows in a table in postgresql 8.1
Дата
Msg-id 47E8F98E.1040505@postnewspapers.com.au
обсуждение исходный текст
Ответ на Re: what is the maximum number of rows in a table in postgresql 8.1  ("sathiya psql" <sathiya.psql@gmail.com>)
Список pgsql-performance
sathiya psql wrote:
> EXPLAIN ANALYZE SELECT count(*) from call_log_in_ram ;
>
And your usual query is:

SELECT count(*) from call_log_in_ram;

?

If so, you should definitely build a summary table maintained by a
trigger to track the row count. That's VERY well explained in the
mailing list archives. This was suggested to you very early on in the
discussion.

If you have problems with other queries, how about showing EXPLAIN
ANALYZE for the other queries you're having problems with?

--
Craig Ringer

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

Предыдущее
От: "sathiya psql"
Дата:
Сообщение: Re: what is the maximum number of rows in a table in postgresql 8.1
Следующее
От: Bill Moran
Дата:
Сообщение: Re: postgresql is slow with larger table even it is in RAM