Re: Multi-Versions and Vacuum -- cf Oracle & Vacuum alt

From: Anthony Berglas <anthony(dot)berglas(at)lucida(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Multi-Versions and Vacuum -- cf Oracle & Vacuum alt
Date: 2002-07-20 01:41:27
Message-ID: E6062644D006474BAEB2A3933C1C459C22FE84@lucidamail.lucidainc.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Thanks for doing the test in Oracle. What I did not see is you setting the
Isolation Level. Or maybe that is what I forgot to do when I did similar
tests some time ago! (I don't have Oracle handy or I'd try again.)

However, the point remains, that there is no reason why PostgreSQL could not
provide more serialized transactions in Read Committed mode without taking
the hits with rollback that Serializable mode gives.

Anthony

PS. Any feedback on the idea of using the transaction log to implement MVC
would be appreciated.

>
> > ORACLE MVC
> >
> > Oracle definitely has MVC. By default it is in Read
> Committed mode. But
> > you can still get record locks in both Postgresql and
> Oracle if you Select
> > FOR UPDATE, which you must do in Read Committed mode to
> produce correct
> > transactions.

> I just tried this in Oracle 8.0.5:
>
> Session #1:
> ---------------
> SQL> select * from employees;
>
> 1 Tom
> 3 Jim
>
> So when you say:
>
> "By memory, Oracle has similar behaviour in Read Committed mode except
> that the PostCommitSelect would NOT show the changes made by session
> two, and thus be more serializable."
>
> it doesn't match the behavior with Oracle 8.0.5. Tom and Jim
> are phantom
> reads, as expected, in Read Committed mode. Perhaps this has
> changed in
> version 9?
>
> Mike Mascari
> mascarm(at)mascari(dot)com
>

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tim 2002-07-20 05:54:14 Re: RAD web development with PostgreSQL?
Previous Message Thomas Hyldgaard 2002-07-19 23:45:13 Error abort transaction behaviour