what are the different types of vsam files available? Explain them
Answer Posted / chandru3
1. Entry sequential data set(ESDS) works like sequential file which contains only cluster and data components.
We must mention NONINDEXED while defining ESDS cluster.
It supports only sequential access in batch program.
2. Key sequential data set(KSDS) has three components(CLUSTER, DATA and INDEX).
We must code INDEXED while defining the KSDS cluster.
Data component consists of sorted records which are based on key values.
Index component consists of key values and the pointer to the data records.
3. Relative Record Data Set(RRDS) records are identified using Relative Record Number (RRN). Records are stored in numbered.
4. The linear dataset(LDS) is a byte-stream dataset which is commonly used in DB2 system. This dataset is rarely used in application programs.
Mainframe important concepts and programs are explained in the IIWOWIIS channel in youtube. Please support us and share your comments.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain the catalog?
What is the function of linear dataset in vsam?
How does control intervals and control areas related to each other?
How do you calculate record size of an alternate cluster?
Yes. Because the alternate key would first locate the primary key, which in turn locates the actual record. Needs twice the number of I/Os.
in a cobol select statement, can you tell what is the organization for a ksds?
What does the keyranges parameter in define cluster commends do?
What are the different parameters that are used in vsam?
what do you mean by gdg in vsam?
What is a ci split? What is a ca split?
is delete operation supported in an esds? Is rewrite operation possible in esds?
what do you mean by define model parameter?
What makes vrrds different from vsam?
Explain the significance of the shareoptions parameter?
Using alternate indexes in cics program?