Tuesday, January 1, 2013

8 Problems With File System Management

(1) Data Redundancy

Data Redundancy means same information is duplicated in several files. This makes data redundancy.

(2) Data Inconsistency

Data Inconsistency means different copies of the same data are not matching. That means different versions of same basic data are existing. This occurs as

the result of update operations that are not updating the same data stored at different places. Example: Address Information of a customer is recorded differently in different files.

(3) Difficulty in Accessing Data

It is not easy to retrieve information using a conventional file processing system. Convenient and efficient information retrieval is almost impossible using conventional file processing system.

(4) Data Isolation

Data are scattered in various files, and the files may be in different format, writing new application program to retrieve data is difficult.

(5) Integrity Problems

The data values may need to satisfy some integrity constraints. For example the balance field Value must be grater than 5000. We have to handle this through program code in file processing systems. But in database we can declare the integrity constraints along with definition itself.

(6) Atomicity Problem

It is difficult to ensure atomicity in file processing system.For example transferring $100 from Account A to account B.If a failure occurs during execution there could be situation like $100 is deducted from Account A and not credited in Account B.

(7) Concurrent Access anomalies

If multiple users are updating the same data simultaneously it will result in inconsistent data state. In file processing system it is very difficult to handle this using program code. This results in concurrent access anomalies.

(8) Security Problems

Enforcing Security Constraints in file processing system is very difficult as the application programs are added to the system in an ad-hoc manner.

No comments:

Post a Comment