vote up 0 vote down star

I am using help of SqlServer.Management.Smo to rename an attached MS-SQL database.

Dim db As New Database = ActiveSQLServer.Databases(OLD_NAME)
db.ExecuteNonQuery("ALTER DATABASE " & OLD_NAME & " SET SINGLE_USER WITH ROLLBACK IMMEDIATE")
db.ExecuteNonQuery("ALTER DATABASE " & OLD_NAME & " MODIFY NAME = " & NEW_NAME)

The problem is that after renaming the database is set as a Single User.

So what am i doing wrong?

flag

1 Answer

vote up 1 vote down check

Your 2nd statement is setting it to single user.

link|flag
I must be joking... right? I will never ever copy & paste again! – strakastroukas Oct 16 at 11:39
:-) sometimes helps to have a new pair of eyes look at the problem... – ozczecho Oct 16 at 11:54
LOL - easiest question I've seen in ages. Don't worry, we've all done that at some point. :-) – Christian Hayter Oct 16 at 11:56

Your Answer

Get an OpenID
or

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