Re: Which schema I am woking on?? - Mailing list pgsql-general

From Alvaro Herrera
Subject Re: Which schema I am woking on??
Date
Msg-id 20030712045024.GA16646@dcc.uchile.cl
Whole thread Raw
In response to Which schema I am woking on??  (Harry Yau <harry@aurasound.com.hk>)
List pgsql-general
On Fri, Jul 11, 2003 at 10:45:57AM +0800, Harry Yau wrote:

> Firstly, is there anyway to find out which Schema I am working on, so I
> could query the pg_tables with a specified schemaname??
> I have tried to select current_schema. However, it always return
> "public" to me.

Actually, the temp schema is always empty for a new session.  I think
you can use something like this to detect if a table exists in the
current temp schema:

select * from pg_class
where relname='foo' and
relnamespace=(
        select oid
        from pg_namespace
        where nspname = (
                select 'pg_temp_'|| foo
                from pg_stat_get_backend_idset() as foo
                where pg_stat_get_backend_pid(foo)=pg_backend_pid()
                )
        );

> Second, I am wondering how could I drop the automically created schema
> automically? Could I config the system to make it drop the correpsonding
> schema whenever a session is terminated?

You don't need to, it already does that.

--
Alvaro Herrera (<alvherre[a]dcc.uchile.cl>)
"Si quieres ser creativo, aprende el arte de perder el tiempo"

pgsql-general by date:

Previous
From: "Maksim Likharev"
Date:
Subject: Re: PG crash on simple query, story continues
Next
From: The Hermit Hacker
Date:
Subject: Re: What about a comp.databases.postgresql usenet newsgroup