Re: transfering tables into other schema

From: Sam Mason <sam(at)samason(dot)me(dot)uk>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: transfering tables into other schema
Date: 2009-02-17 12:19:14
Message-ID: 20090217121914.GJ32672@frubble.xen.chris-lamb.co.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Tue, Feb 17, 2009 at 01:09:10AM -0700, Scott Marlowe wrote:
> On Tue, Feb 17, 2009 at 12:34 AM, Ivan Sergio Borgonovo
> <mail(at)webthatworks(dot)it> wrote:
> > I've around 150-200 tables in the same schema.
> > Some of them have pk/fk relationships and are referenced into
> > functions (~20).
> >
> > I'd like to move all the 200 tables to a new schema and leave that
> > one in the public schema.
>
> ALTER TABLE name SET SCHEMA new_schema;

Make sure your functions don't contain any hard coded references to
the old schema name though!

As Raymond says, you can do this all in a transaction and roll back if
any of the functions don't do the correct thing. Be aware that you're
probably going to lock other users out when doing this so it may be
worth having a script (so it's locked for as small a time as possible
and doesn't wait for human amounts of time) that renames the schema and
runs a few of the functions with representative arguments and a rollback
at the end. Once you've run this a few times with different functions
and arguments and generally convinced yourself that all is OK, change
the rollback to commit and all will be done.

--
Sam http://samason.me.uk/

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Jerry Stuckle 2009-02-17 12:27:01 Re: Which SQL is the best for servers?
Previous Message Albe Laurenz 2009-02-17 12:06:42 Re: Strange Grant behavior in postgres 8.3