How long should it take to run

ALTER Database [mysite] SET READ_COMMITTED_SNAPSHOT ON

I just ran it and its takin 10 minutes.

How can I check if it is applied?

link|improve this question

64% accept rate
did it ever finish? – KM. Apr 28 '09 at 18:28
9  
let me check... – Simon_Weaver Apr 28 '09 at 19:02
ha ha ha ha ha ha ha – KM. Apr 28 '09 at 20:10
feedback

4 Answers

up vote 14 down vote accepted

You can check the status of the READ_COMMITTED_SNAPSHOT setting using the sys.databases view. Check the value of the is_read_committed_snapshot_on column. Already asked and answered.

As for the duration, Books Online states that there can't be any other connections to the database when this takes place, but it doesn't require single-user mode. So you may be blocked by other active connections. Run sp_who (or sp_who2) to see what else is connected to that database.

link|improve this answer
thanks. its taken 40 minutes so far and is showing 0. its a 740mb database. fingers crossed i didnt break it – Simon_Weaver Oct 24 '08 at 3:16
3  
Try to open another query window against that databse. If you can, then I expect your statement hasn't started running yet. – Rick Oct 24 '08 at 3:30
1  
Yup. It should just take a few seconds on most databases. If it's taking longer it's waiting behind another (even non-active) connection to terminate before it can make the change. So you may need to find and KILL any spids currently connected (after evaluating what they're doing). THEN it should go quickly. – Michael K Campbell Sep 9 '11 at 17:09
feedback

Try this:

ALTER DATABASE generic SET READ_COMMITTED_SNAPSHOT ON WITH ROLLBACK IMMEDIATE
link|improve this answer
feedback

Try this code:

if(charindex('Microsoft SQL Server 2005',@@version) > 0)
begin
    declare @sql varchar(8000)
    select @sql = '
    ALTER DATABASE ' + DB_NAME() + ' SET SINGLE_USER WITH ROLLBACK IMMEDIATE ;
    ALTER DATABASE ' + DB_NAME() + ' SET READ_COMMITTED_SNAPSHOT ON;
    ALTER DATABASE ' + DB_NAME() + ' SET MULTI_USER;'

    Exec(@sql)
end
link|improve this answer
This worked for me. (I had the same problem) – Bill Paetzke May 6 '10 at 23:05
You should wrap your db_name() calls with quotename(), to account for any characters in the database name that might need escaping (like spaces). – Rick Jan 11 at 17:20
feedback

Try use master database before altering current database.

USE Master
GO

ALTER DATABASE [YourDatabase] SET READ_COMMITTED_SNAPSHOT ON
GO
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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