Re: atomic commit;begin for long running transactions , in combination with savepoint.

Поиск
Список
Период
Сортировка
От Trevor Talbot
Тема Re: atomic commit;begin for long running transactions , in combination with savepoint.
Дата
Msg-id 90bce5730710150909q4f51ebd2y7c86118ab1d0d87c@mail.gmail.com
обсуждение исходный текст
Ответ на Re: atomic commit;begin for long running transactions , in combination with savepoint.  (Syan Tan <kittylitter@people.net.au>)
Список pgsql-general
On 10/15/07, Syan Tan <kittylitter@people.net.au> wrote:

> >Also keep in mind that MVCC is not the only way to implement
> >transactions; pure locking is more common in other databases.  In the
> >locking model, most transactions prevent others from writing until
> >after they are finished.  Rows simply can't have different versions
> >(and of course concurrent performance is awful).
>
> what about postgresql doing something like snapshot isolation level as per
> the enemy M$ ?

SQL Server is normally a pure locking database; from what I can tell,
its snapshot isolation level adds a limited form of MVCC above that,
making its concurrent behavior closer to PostgreSQL's:
http://msdn2.microsoft.com/en-us/library/ms345124(d=printer).aspx

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

Предыдущее
От: "Trevor Talbot"
Дата:
Сообщение: Re: atomic commit;begin for long running transactions , in combination with savepoint.
Следующее
От: Sam Mason
Дата:
Сообщение: Re: Calculation of per Capita on-the-fly - problems with SQL syntax