Difficulty: Easy
Correct Answer: Incorrect
Explanation:
Introduction / Context:
ERP systems (such as SAP, Oracle ERP, Microsoft Dynamics, etc.) serve large organizations with many simultaneous users—finance, HR, supply chain, sales. They require robust multi-user, concurrent access with transactional guarantees, not single-user engines.
Given Data / Assumptions:
Concept / Approach:
Single-user databases are suitable for personal or embedded use; ERP requires multi-user DBMS (e.g., Oracle Database, SQL Server, PostgreSQL, SAP HANA). These systems implement locking, MVCC, and ACID transactions to maintain consistency amid concurrency.
Step-by-Step Solution:
Evaluate ERP workload: many departments interacting simultaneously. Match workload needs with DBMS capabilities: concurrency control and scaling. Conclude that ERP is not an example of a single-user database.
Verification / Alternative check:
Vendor documentation shows ERPs certified on enterprise-class multi-user DBMS platforms with clustering and HA/DR.
Why Other Options Are Wrong:
“Correct” contradicts ERP fundamentals. Constraints like pilot projects, read-only mode, or OS dependence do not redefine ERP database multi-user nature.
Common Pitfalls:
Equating “single installation” with “single user”; ignoring concurrency as a core ERP requirement.
Final Answer:
Incorrect
Discussion & Comments