Temporary tables ?access possible.

From: Richard Terry <rterry(at)internode(dot)on(dot)net>
To: postgresql-list <pgsql-novice(at)postgresql(dot)org>
Subject: Temporary tables ?access possible.
Date: 2012-06-13 22:09:01
Message-ID: 4FD90F7D.5090606@internode.on.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

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.

Is it possible.

Thanks.

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Tom Lane 2012-06-13 22:53:47 Re: Temporary tables ?access possible.
Previous Message Jeff Davis 2012-06-13 19:10:18 Re: coalesce in plpgsql, and other style questions