Re: row level locking? - Mailing list pgsql-sql

From Stephan Szabo
Subject Re: row level locking?
Date
Msg-id Pine.BSF.4.21.0109101014001.15401-100000@megazone23.bigpanda.com
Whole thread Raw
In response to row level locking?  ("Jeff Barrett" <jbarrett@familynetwork.com>)
List 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 by date:

Previous
From: "Jeff Barrett"
Date:
Subject: calling a shell script from pl/pgsql
Next
From: Stephan Szabo
Date:
Subject: Re: calling a shell script from pl/pgsql