Difficulty: Easy
Correct Answer: System data source.
Explanation:
Introduction / Context:An ODBC Data Source Name (DSN) encapsulates connection information such as driver, server, database, and authentication method. DSNs come in several types that determine scope and storage, which affects who can use them and where they live.
Given Data / Assumptions:
Concept / Approach:
A system data source (often called a System DSN) is stored in the machine-wide configuration so any user or service on that computer can use it. A user data source is limited to a single user profile. A file data source stores DSN settings in a portable .dsn file, which can be copied and used across machines if paths and drivers match.
Step-by-Step Solution:
Match the requirement “local to a single computer, available to the system” → System DSN.Exclude per-user scope → not a User DSN.Exclude file-based portability → not a File DSN.Confirm that “SQL text file” and “Network DSN” are not ODBC DSN categories.Verification / Alternative check:
ODBC administrator tools on Windows categorize DSNs into User, System, and File; System DSN is the machine-level configuration.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
System data source.
Discussion & Comments