What is a VSAM split?

Answers were Sorted based on User's Feedback



What is a VSAM split?..

Answer / guest

If there isn't enough space in the control interval VSAM
performs a control interval split by moving some records to
the free control intervals. If there isn't a free control
interval VSAM performs a control area split by allocating a
new control area and moving half of the control intervals to it.

Is This Answer Correct ?    16 Yes 0 No

What is a VSAM split?..

Answer / krishna

When there isn't enough space in the control interval VSAM performs a control interval split by moving some records to the free control intervals. If there isn't a free control interval, VSAM performs a control area split by allocating a new control area and moving half of the control intervals to it.

There are two types of splits used extensively in VSAM.

CI-SPLIT Movement of some records from an existing CI to another free CI in the same CA because a record add or update cannot be accommodated in the existing one.
A CI split requires a number of I/O operations and this degrades the performance of the VSAM file. The correct amount of the space will need to be allocated for the CI (internal percentage of free space allocation). This will result in two half-empty CI's instead of one full and one empty CI.

CA-SPLIT Movement of the half of the records in an existing CA to a new CA because a record add or update cannot be accommodated in the existing CA. This results in two approximately half-full CA's instead of one full and one empty CA. This is inefficient because it involves a high level of I/O operations.

Is This Answer Correct ?    4 Yes 2 No

Post New Answer

More VSAM Interview Questions

What is a cluster?

2 Answers  


what's the device independent method to indicate where a Record is Stored?

1 Answers  


there are seven idcams commands in vsam. Can you name and explain each of them?

0 Answers   IBM,


What does the KEYRANGES parameter in Define Cluster commend do?

1 Answers  


By seeing a program how we findout it is a VSAM program?

6 Answers   TCS,






explain how do you define a gdg in vsam?

0 Answers   IBM,


Do primary key values have to be unique? Do alternate key values have to be unique?

1 Answers  


What is a path?

1 Answers  


What is VERIFY command ? when do you use this command?? What actually it does ??

2 Answers   Xansa,


Can AMS commands be run from the TSO prompt ?

1 Answers   IBM,


What is an RBA in rrds? What does it do? What is it used for?

5 Answers   CTS,


What are the different types of VSAM files available?

3 Answers   CSC,


Categories