Difficulty: Easy
Correct Answer: SQL Server only security
Explanation:
Introduction:
Authentication modes control how users and applications prove their identity to SQL Server. Knowing the supported modes is essential for secure deployments and compliance with organizational standards.
Given Data / Assumptions:
Concept / Approach:
SQL Server supports two modes: Windows Authentication mode and Mixed Mode. Windows Authentication mode accepts only Windows principals. Mixed Mode accepts both Windows logins and SQL Server logins. There is no configuration that allows only SQL Server logins while excluding Windows accounts entirely.
Step-by-Step Solution:
1) Identify supported modes: Windows Authentication, Mixed Mode.2) Evaluate options against supported modes.3) Conclude that “SQL Server only security” is not a valid mode.
Verification / Alternative check:
During setup or via server properties, administrators can toggle between Windows Authentication and Mixed Mode only.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming there is a “SQL Server only” mode; SQL logins require Mixed Mode, which still allows Windows logins.
Final Answer:
SQL Server only security
Discussion & Comments