...
Note | ||
---|---|---|
| ||
It’s important to understand the implications of using this technique, which utilizes row-level isolation of data being updated in a transaction. One specific situation is inventory, where potentially stale inventory counts could be read if another transaction is in the process of updating that count. In the case of two transactions updating the same row at the same time, the second should fail and rollback, which would cause the transaction to have to be resubmitted. This technique should be tested thoroughly before being applied. |
...
Note |
---|
Refer to the following Microsoft Development Network article for more information on understanding isolation: https://msdn.microsoft.com/en-us/library/ms345124.aspx#sql2k5snapshotisol_topic05 In particular, review the section on Administrative Best Practices. |
Anchor _proc _proc
_proc | |
_proc |
...
Configuring SQL Server Snapshot Isolation
Perform this procedure to enable SQL Server snapshot isolation. Ensure that you understand the information in the Understanding SQL Server Snapshot Isolation Levels before going ahead and enabling snapshot isolation.
...