码迷,mamicode.com
首页 > 数据库 > 详细

转载 The database could not be exclusively locked to perform the operation(SQL Server 5030错误解决办法)

时间:2014-11-06 16:41:03      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   使用   for   sp   数据   

SQL Server 5030错误解决办法

今天在使用SQL Server时,由于之前创建数据库忘记了设置Collocation,数据库中插入中文字符都是乱码,于是到DataBase的Options中修改Collocation,出现了The database could not be exclusively locked to perform the operation这个错误,无法修改字符集为Chinese_PRC_90_CI_AS。

解决办法找了很久才找到,如下:

1.执行SQL ALTER DATABASE db_database SET SINGLE_USER WITH ROLLBACK IMMEDIATE

修改为单用户模式

2.然后关闭所有的查询窗口,修改Options的Collocation属性为Chinese_PRC_90_CI_AS

3.执行SQL ALTER DATABASE db_database SET MULTI_USER

再修改为多用户模式

 

作者:Sunny Peng

转载 The database could not be exclusively locked to perform the operation(SQL Server 5030错误解决办法)

标签:style   blog   http   io   color   使用   for   sp   数据   

原文地址:http://www.cnblogs.com/Fanny4281/p/4078831.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!