Delete Database in MS SQL Server
Last Updated :
02 Sep, 2020
Improve
Prerequisite – Introduction of MS SQL Server and Create Database in MS SQL Server
System databases can't be deleted, only user databases could be deleted. Data and log files will automatically be deleted from disk with database deletion.
To delete a database, the below methods could be used –
Expand Databases, select the database which need to be deleted.
Right-click the database which need to be deleted, and then click Delete.
Check delete backup and restore history or close existing connections if required and then click OK.
2. Using Transact-SQL :
To execute DROP DATABASE statement a user must have CONTROL permission on the database.
- SQL Server Management Studio.
- Transact-SQL.
- To delete a database :
USE master ; GO DROP DATABASE Databasename; GO
- To delete multiple databases :
USE master ; GO DROP DATABASE database1, database2, ...; GO
USE master ; GO DROP DATABASE Geekstest; GO