Tino Wildenhain <tino@xxxxxxxxxxxxx> writes: > Hanan Bentaleb schrieb: >> It has been reported to me that the main problem encountered with former >> postgresql versions is that when a process performs an update (of a >> record in any table), the whole database was locked > I wonder how they managed to lock the whole database. I'd believe table-level locks; we used those in *really* old versions of Postgres. (According to the release notes, MVCC was added in PG 6.5 released 1999-06-09.) I don't believe there ever was a facility that would perform database-level locking at all. Most PG hackers would call you certifiably insane if you were still using a pre-MVCC version today. On data reliability grounds alone, anything older than 7.2 is simply unsafe because of the XID wraparound problem (let alone plain old bugs, of which there were many). If you check the release history you will notice that 7.2.* was the first release series that we continued to update after the initial release of the next series. This is not coincidental: it reflects community judgment that 7.2 was the first release series you'd really want to use for long-term production purposes. regards, tom lane