Provisioning SQL Databases — Question 4

You administer a SQL Server 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 ensure that UserA is disallowed to select from any of the tables in the Customers schema.
Which Transact-SQL statement should you use?

Answer options

Correct answer: G

Explanation

The correct answer is G because it explicitly denies UserA the ability to select from any tables in the Customers schema, overriding any permissions granted through the Sales role. The other options either revoke permissions or modify role membership without effectively preventing UserA from selecting data from the Customers schema.