vote up 0 vote down star

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?

flag

38% accept rate
did it ever finish? – KM Apr 28 at 18:28
1  
let me check... – Simon Apr 28 at 19:02
ha ha ha ha ha ha ha – KM Apr 28 at 20:10

2 Answers

vote up 1 vote down

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|flag
thanks. its taken 40 minutes so far and is showing 0. its a 740mb database. fingers crossed i didnt break it – Simon Oct 24 '08 at 3:16
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
vote up 0 vote down

Try this:

ALTER DATABASE generic SET READ_COMMITTED_SNAPSHOT ON WITH ROLLBACK IMMEDIATE
link|flag
Signatures are not acceptable on this website. You can include this information in your profile. – Hosam Aly Aug 10 at 7:01

Your Answer

Get an OpenID
or

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