Home > Database > Mysql Tutorial > 删除数据库时提示数据库正在被使用,无法删除(Cannot drop datab

删除数据库时提示数据库正在被使用,无法删除(Cannot drop datab

WBOY
Release: 2016-06-07 15:35:18
Original
2859 people have browsed it

http://www.2cto.com/database/201210/160122.html 删除数据库时提示数据库正在被使用,无法删除(Cannot drop database databasename because it is currently in use)的问题 删除数据库时提示数据库正在被使用,无法删除(Cannot drop database databasename

http://www.2cto.com/database/201210/160122.html

 

删除数据库时提示数据库正在被使用,无法删除(Cannot drop database databasename because it is currently in use)的问题

 

删除数据库时提示数据库正在被使用,无法删除(Cannot drop database databasename because it is currently in use)
 

这是因为在操作数据库中出现了问题,比如连接数据库后,打开了数据库连接,

用完后没有正确关闭,这时就可能会导致这种情况出现。

 

那么现在给出解决方案:  www.2cto.com  

 

use master

go

alter database database_name set single_user with rollback immediate 

--将数据库回滚到原始配置状态

 

go

drop database database_name--删除数据库

go

 

注:database_name为要删除的数据库名称。

 

我用的是sqlserver2008 ,可以解决问题

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template