SQL Server 2000 - 以编程方式限制对数据库所有者的访问?
我如何以编程方式将 SQL Server 2000 中数据库的访问权限限制为该数据库的数据库所有者? 示例...如果我在企业管理器中右键单击“Northwind”数据库上的“属性”,则所有者将列为 sa
。 如何将对此数据库的访问权限限制为仅 sa
登录名?
How would I programmatically go about limiting the access of a database in SQL Server 2000 to the database owner for that database? Example... if I right-click "Properties" on the "Northwind" database in Enterprise Manager, the Owner is listed as sa
. How would I limit access for this database to just the sa
login?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一些想法:
SET RESTRICTED_USER
上面)除此之外,您的请求背后的原因是什么?
Some thoughts:
SET RESTRICTED_USER
above)Other than that, what is the reasoning behind your request?
您可以将数据库设置为 RESTRICTED_USER 可用性。
You could set the database to RESTRICTED_USER availability.