row level locking? - Mailing list pgsql-sql

From Jeff Barrett
Subject row level locking?
Date
Msg-id 9nim69$1rhk$1@news.tht.net
Whole thread Raw
Responses Re: row level locking?
List pgsql-sql
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?

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)

How long will each row be locked for?

These queries can be updating a good number of rows ( > 10,000) every 10
minutes and I need to figure out how signifigant of an impact the locking
occuring in those updates can be.




pgsql-sql by date:

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