Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a live database that has existing connections. I want to delete this database regardless of any open connections.

I use SQL Server Management Studio.

What is the bast way:

  • detach command and then delete physical file?
  • delete command?

I hope the question is clear

share|improve this question

2 Answers

up vote 1 down vote accepted
ALTER DATABASE [YourDbName]
SET SINGLE_USER WITH ROLLBACK IMMEDIATE
GO

DROP DATABASE [YourDbName]
GO

Raj

share|improve this answer
is GO command between SINGLE_USER and DROP DATABASE required? – Wachburn Nov 26 '12 at 8:18

You can use the Delete command, don't forget to tick the "Close open connections" checkbox.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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