In SQL Server 2005/2008, how can I tell if Snapshot Isolation is turned on? I know how to turn it on, but I can't find the incantation to get google to tell me how to query the state of the Snapshot Isolation option.
|
feedback
|
|
right click on the databases directory in the object explorer and start powershell.
type: | |||||
feedback
|
|
Powershell, really? what's wrong with good ol' fashioned T-SQL? sys.databases is what you want. It has human readable description columns like snapshot_isolation_state_desc
| |||||||||||
feedback
|