Re: Drop all constraints

Поиск
Список
Период
Сортировка
От Andreas Kretschmer
Тема Re: Drop all constraints
Дата
Msg-id 20100306171705.GA31228@tux
обсуждение исходный текст
Ответ на Drop all constraints  (Gianvito Pio <pio.gianvito@gmail.com>)
Список pgsql-sql
Gianvito Pio <pio.gianvito@gmail.com> wrote:

> Hi all,
> is there a way to drop all constraints of a table?
>
> I found this workaround in the manual:
>
> CREATE TABLE temp AS SELECT * FROM distributors;
> DROP TABLE distributors;
> CREATE TABLE distributors AS SELECT * FROM temp;
> DROP TABLE temp;

I think, you can change the table-name from temp to distributors:
(alter table temp rename to distributors), it's cheaper.

>
> Is there any other way to do it?

Maybe. I think you can walk through the system catalogs to find all
constraints for a table and drop them (alter table foo drop constraint
...). I think, you should start with
http://www.postgresql.org/docs/8.4/interactive/catalog-pg-constraint.html




Andreas
-- 
Really, I'm not out to destroy Microsoft. That will just be a completely
unintentional side effect.                              (Linus Torvalds)
"If I was god, I would recompile penguin with --enable-fly."   (unknown)
Kaufbach, Saxony, Germany, Europe.              N 51.05082°, E 13.56889°


В списке pgsql-sql по дате отправления:

Предыдущее
От: Gianvito Pio
Дата:
Сообщение: Drop all constraints
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Does IMMUTABLE property propagate?