MSSQL2000:获取角色成员列表
我知道角色名称并希望查找该角色中的所有用户。 如何在 SQL Server 2000 中实现此目的(在 SQL 脚本中,而不是在 Management Studio 或其他工具中)?
I know a role name and want to find all users in this role.
How do I acheive this in SQL Server 2000 (in the SQL script, not in Management Studio or other tool)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下存储过程:
对于固定服务器角色,存储过程为 sp_helpsrvrolemember :
对于一般角色,存储过程为 sp_helprolemember :
You can use the following stored procedures:
For fixed server roles, the stored procedure is sp_helpsrvrolemember:
For general roles, the stored procedure is sp_helprolemember:
只需使用 SQL-DMO:
将 rolename 替换为您的角色
Just use SQL-DMO:
Replace rolename with your role