...
Code Block |
---|
For MSSQL 2008 or later (note that these statements must be executed while *no other connections to the current database are open*):
ALTER DATABASE MyDatabase
SET ALLOW_SNAPSHOT_ISOLATION ON
ALTER DATABASE MyDatabase
SET READ_COMMITTED_SNAPSHOT ON |
...