Provisioning SQL Databases — Question 41

You administer a SQL 2012 server that contains a database named SalesDB. SalesDb contains a schema named Customers that has a table named Regions. A user named UserA is a member of a role named Sales.
UserA is granted the Select permission on the Regions table. The Sales role is granted the Select permission on the Customers schema.
You need to remove the Select permission for UserA on the Regions table. You also need to ensure that UserA can still access all the tables in the Customers schema, including the Regions table, through the Sales role permissions.
Which Transact-SQL statement should you use?

Answer options

Correct answer: E

Explanation

The correct answer is E, as it specifically revokes UserA's Select permission on the Regions table without affecting the permissions granted through the Sales role. Options A, B, D, F, G, H, I, and J either deny permissions or modify role membership in ways that do not achieve the goal of retaining access through the Sales role while removing direct access for UserA.