Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将在 SSMS 中为 SQL Server 2008 R2 执行什么 SQL 以了解数据库中是否打开了 SNAPSHOT 隔离级别?
SELECT snapshot_isolation_state_desc from sys.databases where name='<your database name here>'
将允许您检查它是否已打开。