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:
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