Re: pgsql-function called twice in the same second -> - Mailing list pgsql-general

From Stephan Szabo
Subject Re: pgsql-function called twice in the same second ->
Date
Msg-id 20021126090243.I77510-100000@megazone23.bigpanda.com
Whole thread Raw
In response to pgsql-function called twice in the same second -> Double Insert -> Error  ("Peter Alberer" <h9351252@obelix.wu-wien.ac.at>)
List pgsql-general
On Tue, 26 Nov 2002, Peter Alberer wrote:

> The exercise usage process consists of 2 steps: When the student starts
> the exercise the corresponding entry is "locked". (the id of the
> exercise is inserted into a locking table) Every exercise usage
> generates a usage_id that is recorded in the locking table, so the
> exercise can not be deleted while used. When an answer to the exercise
> is received, the exercise usage data is inserted into another table and
> the locking entry is removed.
>
> So the function first tries to retrieve data from the locking table,
> saves (inserts) that data in another table and deletes the entry from
> the locking table. If this function is called twice at the same time,
> both runs get the data from the locking table and both try to do the
> insert. in the first run, the commit succeeds, but in the second run an
> error is generated and the function fails.

You might want that first select to be a SELECT FOR UPDATE so that the
second transaction trying to get the same row waits for the first
transaction to run to completion.


pgsql-general by date:

Previous
From: Steve Crawford
Date:
Subject: Array behavior
Next
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] How can I view the content of Logs?