|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Database in Use When Dropping a Database
By: FYIcenter.com
(Continued from previous topic...)
Why I am getting this error when dropping a database?
If you are trying to drop a database that is in use, you will get
an error message like this:
'Cannot drop database "FyiCenterData" because it is currently in use.'
Before dropping a database, you must stop all client sessions using this database.
If your own client session is using this database, you should set a different
database as the current database as shown in this tutorial example:
CREATE DATABASE FyiCenterData
GO
USE FyiCenterData
GO
DROP DATABASE FyiCenterData
GO
Msg 3702, Level 16, State 4, Server LOCALHOST\SQLEXPRESS
Cannot drop database "FyiCenterData" because it is
currently in use.
USE master
GO
DROP DATABASE FyiCenterData
GO
(Continued on next topic...)
- What is a database?
- What is the simplest way to create a new database?
- How to set the current database?
- How to delete a database?
- Why I am getting this error when dropping a database?
- How to get a list all databases on the SQL server?
- Where is my database stored on the hard disk?
- How to create database with physical files specified?
- How to rename databases?
- Why I am getting this error when renaming a database?
- What are database states?
- How to set a database state to OFFLINE?
- How to move database physical files?
- How to set database to be READ_ONLY?
- How to set database to be SINGLE_USER?
- What are system databases?
|