Re: disable triggers using psql

From: Geoffrey Myers <geof(at)serioustechnology(dot)com>
To: Greg Sabino Mullane <greg(at)turnstep(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: disable triggers using psql
Date: 2011-02-17 21:32:30
Message-ID: 4D5D93EE.2080509@serioustechnology.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Greg Sabino Mullane wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: RIPEMD160
>
>
>>>> set local session_replication_role = replica;
>>>>
>>>> But that does not seem provide the expected relief.
>>> How exactly did this fail? This should absolutely disable all
>>> triggers for you, unless you've mucked with the triggers
>>> and set them to replica.
>
>> I received the following error:
>>
>> ERROR: insert or update on table "customer" violates foreign key
>> constraint "$1"
>
> Try removing the 'local'; you may be spanning multiple transactions.
> If this is a script you are feeding directly to psql, you can
> also add a BEGIN; at the top or just use the -1 argument.

I actually manually wrapped the whole thing in a transaction, but I'll
give your suggestion a shot.

>
> - --
> Greg Sabino Mullane greg(at)turnstep(dot)com
> End Point Corporation http://www.endpoint.com/
> PGP Key: 0x14964AC8 201102171551
> http://biglumber.com/x/web?pk=2529DF6AB8F79407E94445B4BC9B906714964AC8
> -----BEGIN PGP SIGNATURE-----
>
> iEYEAREDAAYFAk1diwUACgkQvJuQZxSWSshcPgCdGuHIe4bINl/BmoKW89YmQscD
> IdAAnA8bwbzmMKssCga9G0dpSh1GopzD
> =khQx
> -----END PGP SIGNATURE-----
>
>
>

--
Geoffrey Myers
Myers Consulting Inc.
770.592.1651

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Geoffrey Myers 2011-02-17 21:51:39 Re: disable triggers using psql
Previous Message Greg Sabino Mullane 2011-02-17 20:55:01 Re: disable triggers using psql