tsql 用于无需模拟即可获取用户权限
我是否可以检查用户是否拥有对服务器上任何对象的修改权限,而无需以该用户身份运行查询?
我需要创建一个登录审核报告,列出对服务器上的某些内容(即服务器上的任何数据库)具有插入/更新访问权限的帐户的登录时间,
这也需要不影响性能(如果可能)或影响最小。
Is there a check I can make to see if a user has modify rights to any object on the server without running the query as that user?
I need to create a logon audit report that lists logon times for accounts that have insert/update access for something on the server(i.e. on any database on the server)
This also needs to not impact performance(if possible) or have the smallest impact.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 这篇文章:
您需要按
用户名
进行过滤。请记住,这仅显示显式定义的权限(和拒绝规则),而不是有效权限。From this article:
You would want to filter by
username
. And keep in mind this shows only the explicitly defined permissions (and deny rules), not effective permissions.