Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
ERP suites integrate core business processes—finance, HR, procurement, inventory, production, sales—into a unified platform. A foundational requirement is persistent, consistent storage of master and transactional data, which is why ERP implementations revolve around robust relational databases.
Given Data / Assumptions:
Concept / Approach:
The “heavily dependent” phrasing reflects that ERP processes read and write large volumes of structured data, require transactional integrity, and need cross-module consistency. DBMS engines (e.g., Oracle, SQL Server, PostgreSQL, SAP HANA) provide indexing, query optimization, security, and concurrency control—capabilities ERP systems rely on.
Step-by-Step Solution:
Verification / Alternative check:
Review vendor architecture diagrams: every major ERP uses a DBMS layer. Even in-memory engines (e.g., HANA) are DBMSs with persistence and logging.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming ERP can safely run on spreadsheets or flat files; underestimating schema governance and referential integrity.
Final Answer:
Correct
Discussion & Comments