Hello everyone,
I am studying snapshot isolation level of SQL Server 2008 from the below link. My confusion is,
http://msdn.microsoft.com/en-us/library/ms173763.aspx
It is mentioned "Data modifications made by other transactions after the start of the current transaction are not visible to statements executing in the current transaction." -- seems data committed by other transactions are not visible to the current snapshot isolation level transaction;
It is mentioned "A transaction running under SNAPSHOT isolation level can view changes made by that transaction." -- seems data committed by other transactions are visible to the current snapshot isolation level transaction.
Seems 1 and 2 are conflicting? Any comments?
thanks in advance, George