Re: Temporary Table

Поиск
Список
Период
Сортировка
От Ralph Mason
Тема Re: Temporary Table
Дата
Msg-id 436FC9B1.4000906@telogis.com
обсуждение исходный текст
Ответ на Re: Temporary Table  (Alvaro Herrera <alvherre@commandprompt.com>)
Список pgsql-performance
Alvaro Herrera wrote:
> Christian Paul B. Cosinas wrote:
>
>> Does Creating Temporary table in a function and NOT dropping them affects
>> the performance of the database?
>>
>
> The system will drop it automatically, so it shouldn't affect.
>
> What _could_ be affecting you if you execute that function a lot, is
> accumulated bloat in pg_class, pg_attribute, or other system catalogs.
> You may want to make sure these are vacuumed often.
>
>
The answer in my experience is a very loud YES YES YES

If you use lots of temporary tables you will grow and dirty your system
catalogs, so you need to be vacuuming them regularly also (pg_call,
pg_attribute) Otherwise your db will slow to a crawl after a while.

Ralph


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

Предыдущее
От: Ralph Mason
Дата:
Сообщение: Figuring out which command failed
Следующее
От: "Christian Paul B. Cosinas"
Дата:
Сообщение: Re: Temporary Table