Re: Dropping all constraints in database - Mailing list pgsql-admin

From Thomas Kellerer
Subject Re: Dropping all constraints in database
Date
Msg-id ilknvd$n3t$1@dough.gmane.org
Whole thread Raw
In response to Dropping all constraints in database  (Lukasz Brodziak <lukasz.brodziak@gmail.com>)
List pgsql-admin
Lukasz Brodziak, 14.03.2011 10:26:
> Hello,
>
> Is there a way of disabling/dropping all constrainsts in a given
> database? I need to restore a db which has duplicate values in nearly
> half of its tables then remove duplicates and then add the constraints
> back. Is there a way to do that for each table in one
> statement/function? It may be even a java/perl script if it can do
> such a thing. Thank You all in advance for help.
>

Something like this?

DO $body$
DECLARE r record;
BEGIN
    FOR r IN SELECT table_name,constraint_name
             FROM information_schema.constraint_table_usage
    LOOP
       EXECUTE 'ALTER TABLE ' || quote_ident(r.table_name)|| ' DROP CONSTRAINT '|| quote_ident(r.constraint_name) ||
';';
    END LOOP;
END
$body$;


If you are not on 9.x yet, you can simply spool the output of a statement like this:

SELECT 'ALTER TABLE '||table_name||' DROP CONSTRAINT '||constraint_name||';'
FROM information_schema.constraint_table_usage

to a file, and then run that file to drop all constraints.

Regards
Thomas


pgsql-admin by date:

Previous
From: Lukasz Brodziak
Date:
Subject: Dropping all constraints in database
Next
From: Glyn Astill
Date:
Subject: Re: Dropping all constraints in database