Does anyone know which versions of sqlserver2008 supports snapshot isolation?
+1
A:
Snapshot Isolation was added in SQL 2005 and is not dependent of the SKU of 2005 or 2008 for that support. Even SQL Express (2005/2008) supports the feature.
ALTER DATABASE DatabaseName
SET ALLOW_SNAPSHOT_ISOLATION ON
Godeke
2008-11-03 15:07:39