Does an insert made in a transaction is visible by SELECT before transaction is commited
Posted
by 20c
on Stack Overflow
See other posts from Stack Overflow
or by 20c
Published on 2010-04-09T10:26:06Z
Indexed on
2010/04/09
10:33 UTC
Read the original article
Hit count: 252
I need a confirmation.
Client 1 insert rows in a table inside a transaction.
Client 2 request this table with a SELECT. If on this client isolation level is set to READ COMMITTED, can you confirm that the SELECT won't returns the rows that aren't yet committed by Client 1.
Thanks
© Stack Overflow or respective owner