| From: | Andrew - Supernews <andrew+nonews(at)supernews(dot)com> |
|---|---|
| To: | pgsql-general(at)postgresql(dot)org |
| Subject: | Re: How to avoid empty temp schemas |
| Date: | 2006-04-24 11:57:44 |
| Message-ID: | slrne4pf9o.2k9s.andrew+nonews@trinity.supernews.net |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
On 2006-04-24, Andrus <eetasoft(at)online(dot)ee> wrote:
> After some time of working, Postgres 8.1.3 on W2K creates large a number of
> empty schemas in my database.
>
> Those schemas are named pg_temp_1 .. pg_temp_13 (some names are missing in
> sequence).
This is normal. The number of temp schemas created will never exceed
max_connections. They are recycled, not removed, as needed.
> Some of them do not contain any objects. Some contain temp tables created by
> my application.
The ones that are in use may contain objects. Those objects are cleared out
when the connection ends. In the event of a crash, they are cleared out
when the temp schema is next recycled.
> Is it safe to remove those schemas ?
It is not necessary. I do not know if it is safe.
--
Andrew, Supernews
http://www.supernews.com - individual and corporate NNTP services
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Shane Ambler | 2006-04-24 12:11:45 | Re: to know |
| Previous Message | Richard Huxton | 2006-04-24 11:40:47 | Re: Automatically assuming a specific role after connecting |