70-465 · Question #64
You need to recommend a solution to meet the security requirements of the junior database administrators. What should you include in the recommendation?
The correct answer is C. A credential. To meet security requirements for junior database administrators who need to perform tasks without directly exposing sensitive credentials, a SQL Server credential should be recommended.
Question
Options
- AA server role
- BA database role
- CA credential
- DA shared login
How the community answered
(42 responses)- A2% (1)
- B12% (5)
- C79% (33)
- D7% (3)
Why each option
To meet security requirements for junior database administrators who need to perform tasks without directly exposing sensitive credentials, a SQL Server credential should be recommended.
A server role grants server-level permissions broadly, which would not restrict or secure access in the granular way required for junior DBAs who should have limited, controlled access.
A database role grants database-level permissions to users but does not address the need to securely delegate access to external resources or mask authentication credentials from junior administrators.
A SQL Server credential is a record that contains authentication information needed to connect to a resource outside SQL Server. It allows junior DBAs to perform specific tasks (such as running jobs or accessing external resources) without being granted direct login permissions or knowing the underlying passwords. This provides a secure delegation model where administrators can operate under controlled, mapped identities without exposing sensitive authentication details.
A shared login would reduce security by having multiple users share the same authentication identity, making it impossible to audit individual actions and violating the principle of least privilege.
Concept tested: SQL Server credentials for secure delegated access
Source: https://learn.microsoft.com/en-us/sql/relational-databases/security/authentication-access/credentials-database-engine
Topics
Community Discussion
No community discussion yet for this question.