Administering Microsoft SQL Server 2012/2014 Databases — Question 18

Note: This question is part of a series of questions that use the same set of answer choices. An answer choice may be correct for more than one question in the series.
You administer a SQL Server database 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 the Regions table.
Which Transact-SQL statement should you use?

Answer options

Correct answer: C

Explanation

The correct answer is C, as it revokes the Select permission on the Regions table from the Sales role, thus effectively removing UserA's ability to select from that table. The other options either deny permissions that are not needed or do not affect UserA's ability to select from the Regions table.