Disabling constraints - Mailing list pgsql-sql

From Kumar
Subject Disabling constraints
Date
Msg-id 00bf01c3f5f3$c62caae0$7502a8c0@hdsc.com
Whole thread Raw
List pgsql-sql
Dear friends,
 
I am working opn Postgres 7.3.4 on RH Linux 7.2.
 
I wanted to disable constraints.
 
Alter table 'table name' disable constraint 'constraint name'; doesn't work.
 
I got some information from google, which says about indirect way of disabling and enabling a constraint, as follows.
update pg_class set reltriggers=0 where relname = 'crm.activities';
update pg_class set reltriggers = count(*) from pg_trigger where pg_class.oid=tgrelid and relname='crm.activities';
 
Also doesnt work.
 
Is there a way to do it?
 
Thanks
Kumar

pgsql-sql by date:

Previous
From: Achilleus Mantzios
Date:
Subject: Re: bytea or blobs?
Next
From: Richard Huxton
Date:
Subject: Re: Return relation table data in a single value CSV