What SQL will I execute in SSMS for SQL Server 2008 R2 to know if SNAPSHOT isolation level is turned on in the database?
Asked
Active
Viewed 8,590 times
1 Answers
10
SELECT snapshot_isolation_state_desc from sys.databases
where name='<your database name here>'
will allow you to check if it is turned on or not.

David Brabant
- 41,623
- 16
- 83
- 111
-
Check the is_read_committed_snapshot_on column. When value is 1 it's on. – David Brabant Aug 21 '14 at 14:59
-
Ok. Thanks. Great for all your quick help. – Sunil Aug 21 '14 at 15:00