Difficulty: Easy
Correct Answer: Incorrect
Explanation:
Introduction / Context:
ODBC defines several DSN types: User DSN, System DSN, and File DSN. Understanding their scope is crucial for deployment. This question checks whether a “User Data Source” is shareable among all users or limited to a single user profile.
Given Data / Assumptions:
Concept / Approach:
A User DSN is private to the user who created it. Other users on the same machine will not see it. To share a DSN across users, configure a System DSN or use a File DSN stored in a shared location. Therefore, the statement “A user data source is one that can be shared among database users” is wrong.
Step-by-Step Solution:
Verification / Alternative check:
Examine registry or configuration files to see that User DSNs are stored per user context while System DSNs are machine-wide.
Why Other Options Are Wrong:
Common Pitfalls:
Deploying applications that rely on User DSNs and then expecting other users or services to see them; forgetting to create System DSNs for service accounts.
Final Answer:
Incorrect
Discussion & Comments