Following statement: INSERT INTO dbo.Changes([Content], [Date], [UserId], [CompanyId]) VALUES (@1, @2, @3, @4); SELECT @@identity; gives me this SQL error 3960: Snapshot isolation …
sql-server tsql transactions transaction-isolation snapshot-isolationThe Snapshot Isolation feature helps us to solve the problem where readers lock out writers on high volume sites. It …
sql-server transactions snapshot-isolation