in Databases edited by
413 views
0 votes
0 votes

Which is the best file organization when data is frequently added or deleted from a file?

  1. Sequential
  2. Direct
  3. Index sequential
  4. None of the above
in Databases edited by
by
413 views

2 Comments

Direct file organisation => Random access (uses hashing)
0
0

1 Answer

1 vote
1 vote
bikram sir ,

A) Sequential Access slower as has to start from the begining every time.

B) Direct Acces very quick for repeated accesses.

C) What is Index Sequential ? Is it that you read through all the indices sequentially , which will then make it slower than the second one.

1 comment

@Harsh

ISAM (Indexed Sequential Access Method) is a file management system that allows records to be accessed either sequentially(in the order they were entered) or randomly (with an index).

Each indexdefines a different ordering of the records.

read this http://searchdatacenter.techtarget.com/definition/ISAM

that sequential behaviour make them slow when data is deleted / added frequently.

1
1
Answer:

Related questions