Computer Systems and Organisation Cat2
Computer Systems and Organisation Cat2
GROUP 8
CAT PRESENTATION
FILE ORGANISATION
DATE: 5/11/24
1
The duplicate records cannot be induced as a result of insert, update or delete.
For the minimal cost of storage, records should be stored efficiently.
Serial file organisation is the simplest file organisation method. In serial files, records are entered in
the order of their creation. As such, the file is unordered, and is at best in chronological order. Serial
files are primarily used as transaction files in which the transactions are recorded in the order that
they occur.
A new record is always inserted at the file's end, and then it will sort the sequence in ascending or
descending orderr.
2
In direct access file, all records are stored in direct access storage device (DASD), such as hard disk.
The records are randomly placed throughout the file.
The records do not need to be in sequence because they are updated directly and rewritten back in
the same location.
This file organization is useful for immediate access to large amount of information. It is used in
accessing large databases. It is also called as hashing.
1. Improved Data Access: Organized files make it easy to locate and retrieve data quickly,
saving time and effort.
2. Enhanced Data Integrity: Proper organization helps in maintaining data accuracy and
consistency, reducing redundancy.
3. Better Security: With organized files, it's easier to implement access controls and data
protection measures.
4. Efficient Resource Management: Organized files enable better use of storage resources and
minimize the risk of data corruption.
5. Improved Collaboration: Team members can easily share and access organized files,
fostering better collaboration and productivity.
1. Initial Setup Time: Organizing files can be time-consuming initially, requiring a well-
thought-out structure.
2. Maintenance Effort: Regular maintenance is necessary to keep files organized, which can be
resource-intensive.
3. Complexity for Large Systems: As the volume of data grows, maintaining an organized
system can become increasingly complex.
4. Potential for Over-organization: Overly detailed organization can lead to unnecessary
complexity, making it harder to find files.
5. Dependency on Consistency: The system relies heavily on users to consistently follow the
organization rules, which can be challenging.
3
4