SQL Server中删除用户时报错,提示:The database principal owns a schema in the database, and cannot be dropped(转载...

Description of the problem: When you tried to drop a user, you got this message:

Error: 15138 The database principal owns a schema in the database, and cannot be dropped.

 

Cause: That means, you are trying to drop a user owning a schema. In order to drop the user, you have to find the schema that’s assigned and then transfer the ownership to another user/role or to drop it.

 

Resolution:


You can fix the issue following two ways.

 

By script: You can find out which schema is owned by this user with the query below:

SELECT name FROM  sys.schemas WHERE principal_id = USER_ID('myUser')

Then, use the names found from the above query below in place of the SchemaName below. And drop your user.

ALTER AUTHORIZATION ON SCHEMA::SchemaName TO dbo 
GO
DROP USER myUser

 

By Management Studio:

- Object Explorer >> Expand the [databasename] >> Security.
- Click on Schemas.
- In summary window, determine which Schema(s) are owned by the user and either change the owner or remove the Scheme(s).
- If they are system schema(s), I suggest to change them to ‘dbo’.
- Drop your user.

 

 

More detail about schemas into the BOL:

User-Schema Separation

 

原文链接

 

转载于:https://www.cnblogs.com/OpenCoder/p/10405812.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值