
Ultimate access to all questions.
Consider a scenario where you need to control access to a table containing product data in a Databricks environment. The table includes product names, descriptions, and pricing details. Describe how you would use dynamic views to ensure that sales representatives can only see product names and descriptions, while hiding the pricing details.
A
Create separate tables for sales and other departments.
B
Use dynamic views to selectively expose columns based on user roles.
C
Disable access to the pricing details for sales representatives.
D
Manually filter data for each sales representative.