本文介绍了T-SQL 如何为用户授予角色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
创建角色并授予权限后,我想将指定角色的权限授予用户,怎么办?我尝试授予 ,但失败了.
After creating roles and granting privileges to them, I want to grant the privileges of a specified role to a user, how to do with it? I tried grant to , but failed.
推荐答案
EXEC sp_addrolemember 'db_owner', 'JohnJacobs'
这篇关于T-SQL 如何为用户授予角色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!