SQL Server 2008:设置用户镜像sa权限
我想设置我的 Windows 身份验证登录到 SQL 以模仿“sa”帐户的权限。执行此操作并将其应用于十几个不同数据库的最简单方法是什么?
谢谢, 布赖恩·恩德尔
I would like to setup my windows authentication login to SQL to mimic the privileges of the 'sa' account. What is the easiest way to do this and have it applied to a dozen different databases?
Thanks,
Brian Enderle
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“sa”处于 SQL Server 实例级别:而不是数据库级别。您将自动获得每个数据库的完整权限。
基本上,
或者
两种样式之间的关联是这里
但是:您确定吗?
"sa" is at the SQL Server Instance level: not the database level. You'll get full rights in every database automatically.
Basically,
or
The association between the 2 styles is here on MSDN
But: are you sure?