Re: this is postgresql question..how do i drop unique constraint on a column?
От | snpe |
---|---|
Тема | Re: this is postgresql question..how do i drop unique constraint on a column? |
Дата | |
Msg-id | 200209092316.39077.snpe@snpe.co.yu обсуждение исходный текст |
Ответ на | Re: this is postgresql question..how do i drop unique constraint on a column? (Jan Ploski <jpljpl@gmx.de>) |
Список | 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 по дате отправления: