在进行数据库操作时,如还原数据库,有时候显示如下错误Exclusive access could not be obtained because the database is in use
可以使用下面语句,关闭当前链接以便继续操作。
use Master
ALTER DATABASE yourdatabasename SET MULTI_USER WITH ROLLBACK IMMEDIATE;
2022-09-16 09:20:11
在进行数据库操作时,如还原数据库,有时候显示如下错误Exclusive access could not be obtained because the database is in use
可以使用下面语句,关闭当前链接以便继续操作。
use Master
ALTER DATABASE yourdatabasename SET MULTI_USER WITH ROLLBACK IMMEDIATE;