SQL Server 相当于 Oracle 的虚拟专用数据库吗?
SQL Server 相当于 Oracle 的虚拟专用数据库 (VPD) 吗?
What is the SQL Server equivalent to Oracle's Virtual Private Database (VPD)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于行/列级安全性和其他方面(例如 SQL Server 中的细粒度访问控制),您可能需要检查此 http://technet.microsoft.com/en-us/library/cc966395.aspx
For row/column level security and other aspects like fine grained access control in SQL Server you might want to check this http://technet.microsoft.com/en-us/library/cc966395.aspx
您可以使用 VIEW 对象在 SQL Server 中创建 VPD。 SQL Server 具有 USER 系统函数,它返回数据库用户,类似于 Oracle 的做法。
You can create a VPD in SQL Server using VIEW objects. SQL Server has the USER system function which returns the database user similar to how Oracle does.