+1 vote
in Computer by kratos

Write a short note on Indexed Sequential Access Method.

1 Answer

+1 vote
by kratos
 
Best answer

Indexed Sequential Access Method (ISAM):

This method combines both the feature of sequential and random organization. Records are accessed by using an index or a table. The index stores the address of each record corresponding to a key number of the record.

The records within the file are stored sequentially but directly accessed to individual records.
An indexed sequential access method (ISAM) consists of

  1. The main file storage
  2. A table to maintain the index

Advantages:

  • It combines both sequential and direct
  • Suitable for sequential access and random access
  • Provides quick access to records

Disadvantage:

  • it uses special software and is expensive
  • extra time is taken to maintain index
  • extra storage for index files
  • expensive hardware is required
...