Re: gprof SELECT COUNT(*) results

Поиск
Список
Период
Сортировка
От Zeugswetter Andreas DCP SD
Тема Re: gprof SELECT COUNT(*) results
Дата
Msg-id E1539E0ED7043848906A8FF995BDA579A16527@m0143.s-mxs.net
обсуждение исходный текст
Ответ на gprof SELECT COUNT(*) results  (Qingqing Zhou <zhouqq@cs.toronto.edu>)
Список pgsql-hackers
> DB2:
> Uncommitted Read (UR) mode "Dirty read" isn't the default, or
> the recommended lock level for most apps. I was considering
> Cursor Stability mode (or higher), which is the default

Sorry, they call it "read committed" but actually do cursor stability,
which does keep one lock on the last fetched row. Keeping the lock would

actually not be necessary to conform with ANSI "read committed".

See table 4 on Page 8 of
http://www.cs.ndsu.nodak.edu/~yawang/Snapshot.ppt

> SQLServer:
> READ COMMITTED does take share locks.

But it does not hold them. According to docu it holds them "while
reading" which
is not a very detailed description. How long is that really, e.g. with
odbc forward
cursor fetch ?

> There's a NO LOCK hint, true, but its not a default.

That is for dirty/uncommitted reads.

Andreas


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

Предыдущее
От: Martijn van Oosterhout
Дата:
Сообщение: Re: ice-broker scan thread
Следующее
От: Harald Fuchs
Дата:
Сообщение: Re: Using multi-row technique with COPY