Re: select count(*) performance

Поиск
Список
Период
Сортировка
От slawekj
Тема Re: select count(*) performance
Дата
Msg-id f9f980$v21$1@news.hub.org
обсуждение исходный текст
Список pgsql-performance
> I'm new in PostgreSQL Business, therefore please forgive me a "newbie"
> Question. I have a table with ca. 1.250.000 Records. When I execute
> a "select count (*) from table" (with pgAdmin III)  it takes about 40
> secs.
> I think that takes much to long. Can you please give me hints, where
> I can search for Improvements?
> TIA, Det

maybe try change shared_buffers and test it,

or you can create trigger on this table after insert and delete
if insert then increse value in another table "counts"
if delete then decrese
and now you dont must execute select count(*) ...
but execute
select my_count from counts where tablename='your_table'

sj



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

Предыдущее
От: Enrico Weigelt
Дата:
Сообщение: Performance on writable views
Следующее
От: runic
Дата:
Сообщение: select count(*) performance