InterviewSolution
Saved Bookmarks
| 1. |
Which of the following returns a row for each security principal in a SQL Server database?(a) sys.database_role_members(b) sys.sql_logins(c) sys.database_principals(d) none of the mentionedI had been asked this question by my school principal while I was bunking the class.The above asked question is from Securables topic in section Security of SQL Server |
|
Answer» RIGHT OPTION is (c) sys.database_principals Explanation: The permissions of fixed DATABASE ROLES do not appear in sys.database_permissions. |
|