Home >Database >Mysql Tutorial >还原数据库的时候 无法处理数据库 'XXXXX',因为它正由

还原数据库的时候 无法处理数据库 'XXXXX',因为它正由

WBOY
WBOYOriginal
2016-06-07 15:47:481899browse

还原数据库的时候 无法处理数据库 'XXXXX',因为它正由此会话使用。建议在执行此操作时使用 master 数据库。 解决: 1、使用SQL账号登录并进行还原时会出现以上错误提示,转用windows登录即可正常还原数据库; 2、如果是使用查询分析器还原,请参考: restor

还原数据库的时候 无法处理数据库 'XXXXX',因为它正由此会话使用。建议在执行此操作时使用 master 数据库。

解决:

 

1、使用SQL 账号登录并进行还原时会出现以上错误提示,转用windows登录即可正常还原数据库;

2、如果是使用查询分析器还原,请参考:

restore database Auction from disk='path' with replace;

System.Data.SqlClient.SqlException: RESTORE 无法处理数据库 'Auction',因为它正由此会话使用。建议在执行此操作时使用 master 数据库。 RESTORE DATABASE 正在异常终止。

很明显的错误提示了,语句改成

use master; restore database Auction from disk='path' with replace;

 

当还原ms sql server 数据库出现如下错误:

无法处理数据库 'XXXXX',因为它正由此会话使用。建议在执行此操作时使用 master 数据库。

可用如下命令去还原

use master
declare @s varchar(8000)
select @s=isnull(@s,'')+' kill '+rtrim(spID) from master..sysprocesses where dbid=db_id('数据库名称')
select @s
exec(@s)

RESTORE DATABASE 数据库名称
FROM DISK = N'还原数据库备份的文件路径.bak'
with replace

 

Statement:
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