What is the SQL Server equivalent for Oracle Virtual Private Database?

What is the SQL Server equivalent for Oracle Virtual Private Database (VPD)?

+6
security sql oracle sql-server owasp
source share
2 answers

For row-column and column-level security and other aspects such as fine-grained access control in SQL Server, you can check this http://technet.microsoft.com/en-us/library/cc966395.aspx

+5
source share

You can create VPDs in SQL Server using VIEW objects. SQL Server has a USER function that returns a database user similar to how Oracle does it.

+1
source share

All Articles