Re: row level locking?

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: row level locking?
Дата
Msg-id Pine.BSF.4.21.0109101014001.15401-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на row level locking?  ("Jeff Barrett" <jbarrett@familynetwork.com>)
Список pgsql-sql
On Mon, 10 Sep 2001, Jeff Barrett wrote:

> I have an update statement (no transaction controls surround these
> statements):
> 
> update sessions set sessdate = 0 where sessid in ( long list of ids);
> 
> How long will the rows being updated be locked for this statement? Will all
> be locked until all updates are completed or will the row locking only occur
> for each row being updated?

AFAIK until the end of statement (since it's wrapped in an implicit
transaction)

> If I have a statement like:
> 
> update sessions set sessdate = 0 where datetime < 10000; (this would be the
> same criteria that created the list used above)

Should be the same I would guess.



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

Предыдущее
От: "Jeff Barrett"
Дата:
Сообщение: calling a shell script from pl/pgsql
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: calling a shell script from pl/pgsql