From: | "Jan B(dot)" <jan(at)monso(dot)de> |
---|---|
To: | Rafa Couto <rafacouto(at)gmail(dot)com> |
Cc: | Andrew Hammond <ahammond(at)ca(dot)afilias(dot)info>, pgsql-sql(at)postgresql(dot)org |
Subject: | Re: Transaction in plpgslq |
Date: | 2005-05-24 11:00:36 |
Message-ID: | 42930954.2090201@monso.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Rafa Couto wrote:
> 2005/5/20, Andrew Hammond <ahammond(at)ca(dot)afilias(dot)info>:
>
>
>>The solution to your problem is locking (or concurrency control if you
>>prefer). While we're at it, we might as well optimize your statement a
>>little too using ORDER BY with LIMIT instead of min().
>>
>>SELECT id INTO _contacto_id
>>FROM contactos
>>WHERE contactos.operadora_id IS NULL
>> AND contactos.actividad_id > = _actividad_id
>>ORDER BY id LIMIT 1
>>FOR UPDATE;
>>
>>Take a look at the "FOR UPDATE" section of the SELECT description for an
>>explanation of how this works.
>
>
>
> I understand "FOR UPDATE" clause is locking while is selecting rows
> only. It does not secure atomic execution from 'SELECT' to 'UPDATE' in
> next statement. Is not it?
>
>
After the SELECT FOR UPDATE command locked some rows, other concurrent
changes to the database could be made, but changes, which require to
lock that rows will be deferred.
The lock will be hold until the end of the transaction (that means at
least until the function returns).
From | Date | Subject | |
---|---|---|---|
Next Message | Szűcs Gábor | 2005-05-24 11:55:21 | Re: [SQL] could not devise a query plan |
Previous Message | Rafa Couto | 2005-05-24 10:40:55 | Re: Transaction in plpgslq |