Re: Making query without trigger - Mailing list pgsql-general

From Dawid Kuroczko
Subject Re: Making query without trigger
Date
Msg-id 758d5e7f0605271048v248f15abw9293171eb2911ada@mail.gmail.com
Whole thread Raw
In response to Making query without trigger  (kmi@st.uz)
List pgsql-general
On 5/26/06, kmi@st.uz <kmi@st.uz> wrote:
> I have trigger on updating the table. Sometimes i need to make queries
> without calling that trigger. How can I solve this?

You could try disabling the trigger (ALTER TABLE ...), doing you updates
and reenabling the trigger (ALTER TABLE) -- all within transaction.  If
you do it this way, your change in triggers won't be visible to any other
transaction.

pgsql-general by date:

Previous
From: "P.M"
Date:
Subject: Re: error in SELECT
Next
From: Rafal Pietrak
Date:
Subject: a row disapearing