方法一: “在SQL 中的Security中要給域帳號開發三個權限:安全、創建、Administrator. “ , 在 服务器角色 中多勾选了Security Administrator 和 Database Creator.
方法二: 在SQL SERVER 2005的MASTER数据库下,按顺序运行
exec sp_configure 'show advanced options', 1;
RECONFIGURE WITH OVERRIDE;
exec sp_configure 'allow updates', 0;
RECONFIGURE WITH OVERRIDE;
其实show advanced options原来就是1,allow updates原来就是0