Re: Which schema I am woking on??

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Which schema I am woking on??
Дата
Msg-id 20030712045024.GA16646@dcc.uchile.cl
обсуждение исходный текст
Ответ на Which schema I am woking on??  (Harry Yau <harry@aurasound.com.hk>)
Список 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 по дате отправления:

Предыдущее
От: "Maksim Likharev"
Дата:
Сообщение: Re: PG crash on simple query, story continues
Следующее
От: The Hermit Hacker
Дата:
Сообщение: Re: What about a comp.databases.postgresql usenet newsgroup