Re: this is postgresql question..how do i drop unique constraint on a column? - Mailing list pgsql-general

From snpe
Subject Re: this is postgresql question..how do i drop unique constraint on a column?
Date
Msg-id 200209092316.39077.snpe@snpe.co.yu
Whole thread Raw
In response to Re: this is postgresql question..how do i drop unique constraint on a column?  (Jan Ploski <jpljpl@gmx.de>)
List pgsql-general
7.3 beta list foreign key with
\d <table_name>
and drop it with
alter table <table_name> drop constraint <constraint_name>

regards
Haris Peco
On Monday 09 September 2002 04:48 pm, Jan Ploski wrote:
> On Fri, Sep 06, 2002 at 03:12:09AM +0000, Eugene Kim wrote:
> > content in content table has unique constraint..(although i can't see it
> > with \d content)
> >
> > how can i drop that constraint?
>
> Eugene,
>
> first, you need to figure out the constraint's name:
>
> select c.relname from pg_class c, pg_index i where
>     i.indrelid=(select oid from pg_class where relname='content') and
>     c.oid=i.indexrelid and i.indisunique='t';
>
> Then use "drop index <name>" to drop it.
>
> For more info about accessing database metadata, see Developer's Guide,
> chapter "System Catalogs".
>
> -JPL
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo@postgresql.org so that your
> message can get through to the mailing list cleanly


pgsql-general by date:

Previous
From: "Weaver, Walt"
Date:
Subject: Real time process monitor in Postgres
Next
From: snpe
Date:
Subject: Re: AutoCommit mode in PostgreSQL (7.3 beta1 from CVS 05.09.2002)