是否可以将链接服务器配置为只读模式
我的开发环境有一个 SQL SERVER 2008 R2,它通过链接服务器连接到生产 Oracle Server (10g) 环境。
为了确保我不会无意中将数据写入Oracle,是否可以将链接服务器配置为只读。如果是这样怎么办..
I have a SQL SERVER 2008 R2 on development environment that connect to production Oracle Server (10g) environment via Linked Server.
To ensure that I do not Write data to Oracle inadvertently, would it be possible to configure the linked server as read-only. If so How..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
严格来说,权限位于 Oracle 端,具有用于连接的凭据。您将权限限制为只读。
一旦链接服务器在 SQL Server 中可见,人们就可以像使用表一样使用它:但在 SQL Server 端没有权限,因为链接服务器不是安全对象。
Strictly speaking, the permissions are on the Oracle side with the credentials used to connect. You'd limit permissions to read only there.
As soon as the linked server is visible in SQL Server people can use it like they would a table: but with no permissions on the SQL Server side as a linked server isn't a securable object.