I read Jeff Atwood's article on Sql Server deadlocks. He said he switched the isolation level to use snapshots. I've seen two types of snapshot commands. I'm wondering--what command(s) did he run?
Only Read_Committed_Snapshot?
ALTER DATABASE <dbname> SET READ_COMMITTED_SNAPSHOT ON
Or only Allow_Snapshot_Isolation?
ALTER DATABASE <dbname> SET ALLOW_SNAPSHOT_ISOLATION ON
Or Both?
ALTER DATABASE <dbname> SET ALLOW_SNAPSHOT_ISOLATION ON
ALTER DATABASE <dbname> SET READ_COMMITTED_SNAPSHOT ON