In MS SQL Server is there a way to detect whether a database has had its isolation level set via the T-SQL command ALTER DATABASE <database> SET READ_COMMITTED_SNAPSHOT ON;

I cannot find a simple way to detect this in either T-SQL or via the Management Studio's GUI.

TIA

link|improve this question
feedback

1 Answer

up vote 46 down vote accepted
SELECT is_read_committed_snapshot_on FROM
sys.databases WHERE name= 'YourDatabase'

Return value:
1 = READ_COMMITTED_SNAPSHOT option is ON. Read operations under the read-committed isolation level are based on snapshot scans and do not acquire locks.

0 = READ_COMMITTED_SNAPSHOT option is OFF (default). Read operations under the read-committed isolation level use share locks.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.