INSERT and transaction serialization in PostreSQL
Posted
by Alexander
on Stack Overflow
See other posts from Stack Overflow
or by Alexander
Published on 2010-06-10T02:28:55Z
Indexed on
2010/06/10
2:42 UTC
Read the original article
Hit count: 318
I have a question. Transaction isolation level is set to serializable. When the one user opens a transaction and INSERTs or UPDATEs data in "table1" and then another user opens a transaction and tries to INSERT data to the same table, does the second user need to wait 'til the first user commits the transaction?
© Stack Overflow or respective owner