Computer Science, asked by Jollyboys, 6 months ago

Difference between ,
Flat File data base and
Relational database
please give at least
five points with example
please don't
give defination​

Answers

Answered by SofiaMaria
2

Answer:

A flat file is conceptually the simplest storage format. Records are stored line by line with no structural relationship between them. A relational database may use a flat file behind the scenes for storage, but provides a layer of abstraction to allow querying of the data and returning related records. A flat file would be used when no advanced querying is required, or processing power is limited and speed is important. Such as logging GPS coordinate on a small device. Whereas a relational database would be used when the application logic needs to be kept as simple as possible, but lots of interrelated bits of data need to be stored and retrieved. Most websites make heavy use of relational databases.

Similar questions