HiveBrain v1.2.0
Get Started
← Back to all entries
snippetsqlCritical

How to force drop database in SQL Server 2008

Submitted by: @import:stackexchange-dba··
0
Viewed 0 times
force2008sqldatabasedrophowserver

Problem

I'm trying to force drop a database, but after dropping the database, when I try to recreate the database, I'm getting the error


cannot create file C:\Program Files.....[databasename].mdf because it already exists

Here's my query to force drop the database

Use master;
ALTER database [databasename] set offline with ROLLBACK IMMEDIATE;
DROP database [databasename];


I understood that, the above query is dropping the database, but it's not deleting the .ldf and .mdf files. How to drop the database thoroughly?

A normal query

Drop database [databasename] ; //deletes the database completely, including the ldf and mdf's.


How to force drop a database, which also deletes the .mdf and .ldf files?

Solution

That is expected and documented behavior:


Dropping a database deletes the database from an instance of SQL Server and deletes the physical disk files used by the database. If the database or any one of its files is offline when it is dropped, the disk files are not deleted. These files can be deleted manually by using Windows Explorer. To remove a database from the current server without deleting the files from the file system, use sp_detach_db.

So why are you taking your database offline first? Just set it into SINGLE_USER mode and then drop it as documented on SQL Server Books Online.-

USE master;
ALTER DATABASE [databasename] SET SINGLE_USER WITH ROLLBACK IMMEDIATE;
DROP DATABASE [databasename] ;


Note, database backups will not be deleted as part of the process documented above.

Code Snippets

USE master;
ALTER DATABASE [databasename] SET SINGLE_USER WITH ROLLBACK IMMEDIATE;
DROP DATABASE [databasename] ;

Context

StackExchange Database Administrators Q#34264, answer score: 131

Revisions (0)

No revisions yet.