DRAG DROP
You administer a database named SalesDb that has users named UserA, UserB, and UserC.
You need to ensure that the following requirements are met:
UserA must be able to provide Windows logins access to the database.

UserB must be able to select, update, delete, and insert data to the database tablets.

UserC must be able to create new tables and stored procedures.

You need to achieve this goal by granting only the minimum permissions required.
To which fixed database role or roles should you add the users? (To answer, drag the appropriate user or users to the correct database role or roles. Answer choices may be used once, more than once, or not at all. Answer targets may be used once or not at all. Additionally, you may need to drag the split bar between panes or scroll to view content.) Select and Place:

Correct Answer:

Explanation/Reference:
Explanation:
UserA: db_accessadmin
Members of the db_accessadmin fixed database role can add or remove access for Windows logins, Windows groups, and SQL Server logins.
UserB: db_datareader, db_datawriter
Members of the db_datareader fixed database role can run a SELECT statement against any table or view in the database.
Members of the db_datawriter fixed database role can add, delete, or change data in all user tables.
UserC: db_ddladmin
Members of the db_ddladmin fixed database role can run any Data Definition Language (DDL) command in a database.
Incorrect Answers:
Not db_owner
Members of the db_owner fixed database role can perform all configuration and maintenance activities on the database.
References:
https://technet.microsoft.com/en-us/library/ms191451(v=sql.90).aspx
https://technet.microsoft.com/en-us/library/ms190667(v=sql.90).aspx