Re: transaction - Mailing list pgsql-sql

From denis@coralindia.com
Subject Re: transaction
Date
Msg-id 003d01c42772$4fc3bf00$3332a8c0@DENIS
Whole thread Raw
In response to transaction  ("H.J. Sanders" <hjs@worldonline.nl>)
List pgsql-sql
Hi,

You can achieve this by:

1. Create a new table
2. Insert the data in this.
3. Write a trigger on this table
4. In trigger issue UPDATE and check whether it updated any records. If NO,
fire INSERT.   ( here, i am updating first and inserting.. just reverse )

The code looks like:
       update tempxitag set qty = qty + nqty where               ccod = cccod       GET DIAGNOSTICS nFound = ROW_COUNT;
     If nFound = 0 then           insert into tempxitag( ccod, qty)           values (cccod, nqty );       End if;
 

HTH

Denis


----- Original Message -----
From: Bruno Wolff III <bruno@wolff.to>
To: H.J. Sanders <hjs@worldonline.nl>
Cc: <pgsql-sql@postgresql.org>
Sent: Wednesday, April 21, 2004 7:30 AM
Subject: Re: [SQL] transaction


> On Tue, Apr 20, 2004 at 21:14:48 +0200,
>   "H.J. Sanders" <hjs@worldonline.nl> wrote:
> >
> > Hello list.
> >
> > We are migrating from Informix to PSQL.
> >
> > In Informix we used to do:
> >
> > - BEGIN WORK
> >
> > - INSERT ROW
> >
> > - IF FAILED THEN UPDATE ROW
> >
> > - COMMIT WORK
> >
> >
> > In PSQL  this does not seem to work because after the first error (the
> > insert)
> > everything is omitted.
> >
> > Has someone found a solution for this (we have 1000's of this type).
>
> This question has come up a few times over the last year and there isn't
> a great answer. Locking the table is a simple solution, but can lead to
> problems because of contention.
>
> ---------------------------(end of broadcast)---------------------------
> TIP 7: don't forget to increase your free space map settings




pgsql-sql by date:

Previous
From: "Antal Attila"
Date:
Subject: Own opclass and LIKE problem again!
Next
From: denis@coralindia.com
Date:
Subject: Re: Syntax for cmd to EXEC...how many quotes?