SQL Server:如何隐式拥有所有访问权限,并显式拒绝某些访问权限?

发布于 2024-10-01 07:34:03 字数 218 浏览 6 评论 0原文

我想拒绝特定用户对数据库中某些对象的某些访问;但任何没有明确拒绝的事情我都希望默认被授予。

通常,我让用户成为 db_owner 角色的成员,以便为他们提供所有访问权限(这是因为默认情况下,public 卷并不具有所有访问权限)。但是,如果我随后在特定表上明确拒绝该特定用户的选择权限,他们仍然拥有选择权限。

用户如何隐式拥有所有访问权限,除非显式拒绝?

i want to deny some access to some objects in a database for a particular user; but anything not specifically denied i want to, by default, be granted.

Normally i make a user a member of the db_owner role, in order to give them all access (this is because the public roll doesn't by default have all access). But if i then specifically deny select permission, on a specific table, for that specific user, they still have select permission.

How can a user implicitly have all access, unless explicitly denied?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

等你爱我 2024-10-08 07:34:03

让每个人都扮演一个不是所有者的角色,例如 db_datareader。我认为您的问题是试图拒绝对 db_owner 成员进行选择。对于管理员来说也是如此。

Put everyone in a role that is not an owner like db_datareader. I think your problem was trying to deny select on a db_owner member. Same goes for admins.

白况 2024-10-08 07:34:03

没关系,问题并不像我描述的那样。

  • 用户是db_owner固定角色的成员
  • 用户被拒绝select访问表
  • 用户仍然可以访问表数据

这是因为用户首先查看视图、存储过程或函数。显然,如果您为表添加别名,则可以绕过安全性。

SQL Server:如何隐式拥有所有访问,并明确拒绝一些?

Never mind, the issue is not as i described.

  • the user is a member of db_owner fixed role
  • the user is denied select access to a table
  • user can still access table data

This is because the user is first going through a view, stored procedure, or function. Apparently you're allowed to bypass security if you alias the table.

SQL Server: How to implicitly have all access, and explicitly deny some?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文