Re: Syntax error in DROP CONSTRAINT

From: Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com>
To: Rajan Bhide <rbhide(at)starentnetworks(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org, Ritesh Kumar Kakar <rkakar(at)starentnetworks(dot)com>
Subject: Re: Syntax error in DROP CONSTRAINT
Date: 2004-11-17 14:46:07
Message-ID: 20041117064315.B17486@megazone.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

On Wed, 17 Nov 2004, Rajan Bhide wrote:

> Hi Forum,
>
> I need to add a colume to existing composite primary key on a table.
> I tried using following:
> >> ALTER TABLE DROP CONSTRAINT tablename_pkey;
> >> ALTER TABLE ADD CONSTRAINT PRIMARY KEY (col1, col2, col3, new_col4);
>
> When I try this using Postgres 7.2.4 I get psql syntax error in DROP
> CONSTRAINT.
> ERROR: parser: parse error at or near ";"

I believe 7.2 requires RESTRICT at the end and the online docs imply that
it won't remove primary keys in any case so you'll probably need to drop
the index that was created for the constraint instead of using DROP
CONSTRAINT.

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message sarlav kumar 2004-11-17 15:12:46 Re: upgrade from postgres 7.3.2
Previous Message Vishal Kashyap @ [SaiHertz] 2004-11-17 13:48:09 Re: upgrade from postgres 7.3.2