Re: Lock table, best option?

Поиск
Список
Период
Сортировка
От Josh Kupershmidt
Тема Re: Lock table, best option?
Дата
Msg-id t2n4ec1cf761004251959l7c639186x96a36e307adc408b@mail.gmail.com
обсуждение исходный текст
Ответ на Lock table, best option?  (Andre Lopes <lopes80andre@gmail.com>)
Список pgsql-general
On Sat, Apr 24, 2010 at 4:46 PM, Andre Lopes <lopes80andre@gmail.com> wrote:
> I need to do a SELECT and an UPDATE, but I will have concurrent processes
> doing the same task.
>
> How can I prevent that the concurrent task don't have the same results in
> the SELECT? Locking a table? How can I do that?

It sounds like you might be looking for SELECT ... FOR UPDATE, see:
http://www.postgresql.org/docs/current/static/sql-select.html

Basically, you could have each transaction issue SELECT ... FOR UPDATE
for rows intended to be updated later. Only one transaction would be
able to acquire the necessary locks for the same rows at the same
time; the other transaction(s) would block until the locks are
released by the first transaction's commit, and then would see the new
values. This paragraph assumes you're using the default "read
committed" transaction isolation level, you might want to read more
at:
http://www.postgresql.org/docs/current/static/transaction-iso.html

And if you really want to know about full table locking, you can read more at:
http://www.postgresql.org/docs/current/static/sql-lock.html

though it doesn't sound like you'll actually need full table locks.

Josh

В списке pgsql-general по дате отправления:

Предыдущее
От: Megha
Дата:
Сообщение: Help with pgpool-dbt2 database
Следующее
От: Yan Cheng CHEOK
Дата:
Сообщение: Deadlock occur while creating new table to be used in partition.