Re: Why lots of temp schemas are being created

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Walter Coole <WCoole(at)aperiogroup(dot)com>
Cc: "Merlin Moncure" <mmoncure(at)gmail(dot)com>, Grzegorz Jaśkiewicz <gryzman(at)gmail(dot)com>, "Anirban Pal" <anirban(dot)pal(at)newgen(dot)co(dot)in>, pgsql-novice(at)postgresql(dot)org, pgsql-general(at)postgresql(dot)org
Subject: Re: Why lots of temp schemas are being created
Date: 2010-02-04 00:24:24
Message-ID: 13976.1265243064@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-novice

Walter Coole <WCoole(at)aperiogroup(dot)com> writes:
> I've gotten a lot of similar schemas, like:
> CREATE SCHEMA pg_toast_temp_1
> AUTHORIZATION postgres;

These schemas are automatically created to hold temporary tables. There
is not a lot of point in removing them, because they'll just reappear
next time you have a lot of sessions creating temp tables.

You might want to pester the pgAdmin folk to add an option to ignore
them in pgAdmin's displays.

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Walter Coole 2010-02-04 00:34:13 Re: Why lots of temp schemas are being created
Previous Message Alvaro Herrera 2010-02-03 23:36:12 Re: Why lots of temp schemas are being created

Browse pgsql-novice by date

  From Date Subject
Next Message Walter Coole 2010-02-04 00:34:13 Re: Why lots of temp schemas are being created
Previous Message Alvaro Herrera 2010-02-03 23:36:12 Re: Why lots of temp schemas are being created