I need confirmation.
Client 1 inserts rows into the table inside the transaction.
Client 2 will query this table using SELECT. If at this isolation level of the client is set to READ COMMITTED, can you confirm that SELECT will not return rows that have not yet been executed by client 1.
thank
It depends on the level of transaction isolation. If the isolation level is indeed โRead Committedโ, other connections cannot see rows that were inserted by another client in a transaction that has not yet been committed.
Some reading:
MSDN
, . READ COMMITTED , , , .
READ COMMITTED
.
MSDN , () :
, , , . . , phantom . SQL Server.
SELECT READ UNCOMMITTED, , , .
Source: https://habr.com/ru/post/1740434/More articles:How to make first char top in php? - stringhow to get substring from string with variable character length in php? - stringMVC: submit one form from a page with multiple forms - c #user uitableviewcell for login - username and password - uitableviewStep by step validation using jquery validation plugin - javascriptConnecting to SQL Server 2008 with Java - javaBest option for Google App Engine Datastore and external database? - pythonHow to debug problems in the Linux kernel module `init ()`? - linuxHow to use the Linq group order list by date - c #What is the IP address of the iPhone simulator? - iphoneAll Articles