Re: Temporary tables ?access possible.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Richard Terry <rterry(at)internode(dot)on(dot)net>
Cc: postgresql-list <pgsql-novice(at)postgresql(dot)org>
Subject: Re: Temporary tables ?access possible.
Date: 2012-06-13 22:53:47
Message-ID: 22031.1339628027@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Richard Terry <rterry(at)internode(dot)on(dot)net> writes:
> select pn.nspname, pc.relname from pg_class pc, pg_namespace pn where
> pc.relnamespace = pn.oid and pc.relname ilike 'my-temp-table-name';

> This gives the the details, but I can't still access the contents.

If you mean access the contents from another session, no you can't,
at least not with any reliability.

regards, tom lane

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Daniel Staal 2012-06-14 01:18:56 Re: coalesce in plpgsql, and other style questions
Previous Message Richard Terry 2012-06-13 22:09:01 Temporary tables ?access possible.