Re: recreating table and foreign keys

From: Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>
To: Tomasz Myrta <jasiek(at)klaster(dot)net>
Cc: <pgsql-sql(at)postgresql(dot)org>
Subject: Re: recreating table and foreign keys
Date: 2002-12-03 16:31:35
Message-ID: 20021203082926.W71171-100000@megazone23.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


On Tue, 3 Dec 2002, Tomasz Myrta wrote:

> Hi
> I use Postgresql 7.2.2.
> Sometimes I have to remove a column from my tables (psql):
> 1. alter table master_table rename to x;
> 2. \i tables.sql
> 3. insert into master_table select f1,f2,... from x
> 4. drop table x
>
> I think, foreign keys referring from detail_table(s) to master_table
> have gone.
> How to recreate foreign keys? I want to keep my database in better
> integrity, than now...

You'll probably end up using ALTER TABLE ADD CONSTRAINT to add the
constraints to the new master_table. It's possible that you might be able
to hack something with the system tables, but that sounds dangerous. Or
you can upgrade to 7.3 which lets you run alter table drop column. :)

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message eric soroos 2002-12-03 19:01:33 Query for filtering records
Previous Message Mike Winter 2002-12-03 16:30:45 Large Query Question. (Slow Select while using 'IN')