FEFreeExamDumps.in

Implementing Data Engineering Solutions Using Azure Databricks

Topic 1

Question 26

DP-750 voucher + Udemy course (lifetime access) = ₹3,500 for Indian ID card holders.

Details →

A compliance requirement states that the `national_id` column in the table `hr.people.employees` must be masked so that only members of the `hr_privileged` group can see the raw value; everyone else must see `***-**-****`. A junior engineer proposes the following solution: > "Grant `SELECT` on the schema `hr.people` to the `analysts` group. Because the grant is scoped to the schema, analysts can read the tables but the sensitive `national_id` column will automatically be masked for them by Unity Catalog's privilege inheritance." The team then runs: ```sql GRANT USE CATALOG ON CATALOG hr TO `analysts`; GRANT USE SCHEMA ON SCHEMA hr.people TO `analysts`; GRANT SELECT ON SCHEMA hr.people TO `analysts`; ``` **Does this solution meet the goal of masking the `national_id` column for non-privileged users?**

  • AYes
  • BNo