|
In the v7.3 docs: http://www.postgresql.org/docs/7.3/interactive/transaction-iso.html#XACT-READ-COMMITTED Read Committed is the default isolation level in PostgreSQL. When a transaction runs on this isolation level, a SELECT query sees only data committed before the query began; it never sees either uncommitted data or changes committed during query execution by concurrent transactions. (However, the SELECT does see the effects of previous updates executed within its own transaction, even though they are not yet committed.) In effect, a SELECT query sees a snapshot of the database as of the instant that that query begins to run. Notice that two successive SELECTs can see different data, even though they are within a single transaction, if other transactions commit changes during execution of the first SELECT. Andrew V i s h a l Kashyap @ [Sai Hertz And Control Systems] wrote:
|
- [ADMIN] Selects quer... V i s h a l Kashyap @ [Sai Hertz And Control Systems]
- Re: [ADMIN] Sel... V i s h a l Kashyap @ [Sai Hertz And Control Systems]
- Re: [ADMIN] Sel... Oliver Elphick
- Re: [ADMIN]... V i s h a l Kashyap @ [Sai Hertz And Control Systems]
- Re: [AD... Oliver Elphick
- Re: [AD... Andrew Biagioni
- Re:... Robert Treat
