Re: Explicitly adding a table to a schema.

From: Guillaume Lelarge <guillaume(at)lelarge(dot)info>
To: Demitri Muna <thatsanicehatyouhave(at)mac(dot)com>
Cc: Adam Cornett <adam(dot)cornett(at)gmail(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: Explicitly adding a table to a schema.
Date: 2011-11-04 18:43:32
Message-ID: 1320432212.2109.28.camel@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Fri, 2011-11-04 at 14:32 -0400, Demitri Muna wrote:
> Hi,
>
> On Nov 4, 2011, at 2:09 PM, Adam Cornett wrote:
>
> > You can use ALTER TABLE (http://www.postgresql.org/docs/current/static/sql-altertable.html) to set the schema of existing tables:
> > ALTER TABLE foo SET SCHEMA bar
>
> Thanks. I did try that, but that command moves the table to a different schema, which is not what I'm trying to do. It struck me to try to move it to another schema (where the definition then explicitly included the schema prefix) and then move it back, but it still doesn't have the schema prefix.
>

pgAdmin doesn't add the schema name if the object is visible within your
search_path. So, some objects will have their name prefixed with the
schema name, and others won't.

--
Guillaume
http://blog.guillaume.lelarge.info
http://www.dalibo.com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Rob Sargent 2011-11-04 19:18:34 Re: psql is too slow to connect
Previous Message Pavel Stehule 2011-11-04 18:39:56 Re: Explicitly adding a table to a schema.