Re: Temporary Table - Mailing list pgsql-performance

From Ralph Mason
Subject Re: Temporary Table
Date
Msg-id 436FC9B1.4000906@telogis.com
Whole thread Raw
In response to Re: Temporary Table  (Alvaro Herrera <alvherre@commandprompt.com>)
List 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 by date:

Previous
From: Ralph Mason
Date:
Subject: Figuring out which command failed
Next
From: "Christian Paul B. Cosinas"
Date:
Subject: Re: Temporary Table