175k views
3 votes
Summarize the distinction between a flat file and a database

1 Answer

4 votes

Answer:

Flat file databases are simple and portable, and typically can be used without requiring special software. Relational databases are faster, more efficient and more powerful than flat files. Most RDBMSs provide database access over networks

Step-by-step explanation:

Flat file databases are plain text files that stores one record per line for that reason we can say, it is simple and portable, and typically can be used without requiring special software.

Relational databases use "indexes" to quickly find records based on search criteria, to that they generally require a relational database management system (RDBMS) to manage and access the data. which make them faster, more efficient and more powerful than flat files. Most RDBMSs provide database access over networks.

User Tjhack
by
7.6k points