answersLogoWhite

0


Best Answer

You should have the answer not me

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Advantages of Flat file database
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Advantages and disadvantages Flat file database?

No one knows


What is an example of flat file database?

A spreadsheet is one example. All the data is in a single table.


Difference between database file and flat file in DBMS?

Database file is one that is stored on a server and it is in the format that the database needs to read it. It is also stored in the database catalog. A flat file is one that is dumped from a database to import or export into another database or program. A flat file is fields of data separated by delimiters, which keep the fields separated for export/import.


Difference between flat file and database file?

DATABASE FILE - is one that is stored on a server and it is in the format that the database needs to read it. It is stored in the database catalog......


Similarities between database file and flat file in DBMS?

kas


How can you overcome the problems of a flat-file database?

Store it in MySQL or use more then one flat-file DB...


What are the advantages of a database management approach to the file approach?

laleo


2.what are the advantages of database management approach to the file processing approach Give examples to illustrate your answer?

what are the advantages of database management approach to the file processing approach Give examples to illustrate your answer


What is bulk loading in a database?

Usually, that is using a "load" file to import data into a database. That can be a flat, delimited file or other formats. The type of format used depends on the database. My database has data upload batch jobs scheduled daily.


What is a simple database program whose records have no relationship to one another?

flat file


What is a flat file database?

Flat file databases are also called as relational databases describe any different means to encode a database model. This requires data to be kept in one large table. Big up Philip Proctor


What are the advantages of traditional file processing and database approach?

An alternative to using a database to store data is to use what are known as flat files. These are basically text files that are stored on your server that you can use to store your data, change, manipulate and generally use how you want. Although I'd recommend you use a database, you can use PHP's file processing system. There are 3 steps to writing data to a file: # Open the file (create if doesn't already exist) # Write data to the file # Close the file There are also 3 steps to reading data in a file: # Open the file (if cannot be opened, generate an errror) # Read the data # Close the file