Temporary tables and miscellaneous schemas - Mailing list pgsql-general

From
Subject Temporary tables and miscellaneous schemas
Date
Msg-id 64867.66.212.203.144.1065948536.squirrel@$HOSTNAME
Whole thread Raw
Responses Re: Temporary tables and miscellaneous schemas  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
Whenever I create a temporary table, with something like

CREATE TEMPORARY TABLE temptable1 AS SELECT * FROM paid.ad_hoc_query;

New schemas appear, with names like "pg_temp_1". I guess the appearance
of these schemas with "temp" in the name indicates that they are
"temporary" schemas and related to the temporary table creation, but the
schemas persist even after the end of the session in which the temporary
table was created.

What's up with these miscellaneous schemas? Are they in fact related to
the creation of temporary tables? Should they disappear when the session
closes, as should the temporary table? If they continue persisting after
the session closes, how do I get rid of them?

~Berend Tober




pgsql-general by date:

Previous
From: Network Administrator
Date:
Subject: Re: need for concrete info
Next
From: Michael Meskes
Date:
Subject: Re: Postgres 7.4 : ECPG not Thread-safe