views:

63

answers:

2
+1  Q: 

Snapshot Isolation

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
A: 

Hi Godeke,

Thanks

If you consider this a correct answer, please mark it so: others will know that the question has been answered at it will take this off of the "unanswered" page.
Godeke

related questions