Re: ALTER TABLE and dropping a column

From: "Josh Berkus" <josh(at)agliodbs(dot)com>
To: Frank Joerdens <frank(at)joerdens(dot)de>, pgsql-sql(at)postgresql(dot)org
Subject: Re: ALTER TABLE and dropping a column
Date: 2002-02-07 23:22:43
Message-ID: web-687910@davinci.ethosmedia.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Frank,

> ALTER TABLE foo DROP COLUMN bar;
>
> Is there a way to do that manually and safely, e.g. by manipulating
> pg_class or pg_attribute? I found a couple of threads about it dating
> from way back in summer 2000 and early 2001, but nothing conclusive.

At this time, I would strongly recommend one of two approaches:

If the table has multiple constraints and other dependant objects:
1. pg_dump the database.
2. Edit the table definition and the data for the table from the
pg_dump file.
3. Restore the database from pg_dump

If it doesn't:
1. Select the data for columns you want to keep into a new holding
table.
2. Drop and re-build the table with the correct columns.
3. Insert the data from the holding table into the re-build table.
4. Drop the holding table.

It's a pain, I know, but not nearly the pain you will suffer if you
start mucking with the system tables ...

-Josh

______AGLIO DATABASE SOLUTIONS___________________________
Josh Berkus
Complete information technology josh(at)agliodbs(dot)com
and data management solutions (415) 565-7293
for law firms, small businesses fax 621-2533
and non-profit organizations. San Francisco

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Vincent AE Scott 2002-02-08 02:13:32 Re: How do you return more than one variable in a plpgsql function?
Previous Message Frank Joerdens 2002-02-07 22:25:13 ALTER TABLE and dropping a column