row level locking?

Поиск
Список
Период
Сортировка
От Jeff Barrett
Тема row level locking?
Дата
Msg-id 9nim69$1rhk$1@news.tht.net
обсуждение исходный текст
Ответы Re: row level locking?  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
Список 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 по дате отправления:

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