Which of the following is a primary advantage of using a database over a flat file system for storing customer records?
Trap 1: Simpler to set up and manage
Flat files are simpler to set up, but that is not the primary advantage of databases.
Trap 2: Stores data in a non-structured format
Databases store data in structured formats; flat files can be unstructured.
Trap 3: No need for a query language
Databases use query languages like SQL, which is a feature, not a disadvantage.
- A
Simpler to set up and manage
Why wrong: Flat files are simpler to set up, but that is not the primary advantage of databases.
- B
Supports simultaneous multi-user access
Databases are designed for concurrent access with transaction controls.
- C
Stores data in a non-structured format
Why wrong: Databases store data in structured formats; flat files can be unstructured.
- D
No need for a query language
Why wrong: Databases use query languages like SQL, which is a feature, not a disadvantage.