I need to programaticaly enable READ COMMITED SNAPSHOT in SQL Server. How can I do that?

link|improve this question

57% accept rate
feedback

2 Answers

I recommend switching to single-user mode first. That ensures you're the only connection. Otherwise, the query might be suspended.

From: http://msdn.microsoft.com/en-us/library/ms175095.aspx

When setting the READ_COMMITTED_SNAPSHOT option, only the connection executing the ALTER DATABASE command is allowed in the database. There must be no other open connection in the database until ALTER DATABASE is complete.

So, use this SQL:

ALTER DATABASE <dbname> SET SINGLE_USER WITH ROLLBACK IMMEDIATE;
ALTER DATABASE <dbname> SET READ_COMMITTED_SNAPSHOT ON;
ALTER DATABASE <dbname> SET MULTI_USER;
link|improve this answer
1  
This was a freaking lifesaver. Thanks. – Kamikaze Mercenary Jan 11 '11 at 19:26
@Kamikaze You're welcome! – Bill Paetzke Jan 19 '11 at 18:40
feedback
up vote 3 down vote accepted
ALTER DATABASE [dbname] SET READ_COMMITTED_SNAPSHOT ON WITH ROLLBACK AFTER 20 SECONDS
link|improve this answer
@João--What is this for? Is it required? WITH ROLLBACK AFTER 20 SECONDS – Bill Paetzke May 6 '10 at 6:47
According MSDN: Specifies when to roll back incomplete transactions when the database is transitioned from one state to another. If the termination clause is omitted, the ALTER DATABASE statement waits indefinitely if there is any lock on the database. – João Vieira May 11 '10 at 13:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.