What are the different types of VSAM files available?
Answers were Sorted based on User's Feedback
Answer / harish
one more thatz
LDS = LINEAR DATA SETS
THEY DONT HAVE RECORDS, THEY ARE LONG STRINGS OF BYTES OF
DATA............PORTABLE ACROSS SYSTEMS
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / anandaboopalan
Totally 5 are available
ESDS: Entry Sequence Data Set
KSDS: Key Sequence Data Set
RRDS: Relative Record Data Set
LDS = LINEAR DATA SETS
VRRDS = Variable Relative Record Data Set
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / sanjudharan
ESDS: Entry Sequence Data Set
KSDS: Key Sequence Data Set
RRDS: Relative Data Set
| Is This Answer Correct ? | 8 Yes | 3 No |
How do you define an ALTINDX ? How do you use ALTINDXs in batch, CICS pgm?s ?
what's the device independent method to indicate where a Record is Stored?
what is meant by BUFND & BUFNI..?
Describe the uses of ams?
What is the difference between shroptions(2 3) and shroptions (4 3) in the Def CLUSTER ??
What is a base cluste?
what are the different types of vsam files available? Explain them
Under idcams, multiple functions can be executed, each of which returns a condition code. What will be the condition code returned to the operating system?
What are all the ways we can create datasets?
What is a CA, control area?
What is a ci split? What is a ca split?
OPEN INPUT StudentFile READ StudentFile AT END SET EndOfStudentFile TO TRUE END-READ PERFORM UNTIL EndOfStudentFile DISPLAY StudentId SPACE StudentName SPACE CourseCode SPACE YOBirth READ StudentFile AT END SET EndOfStudentFile TO TRUE END-READ END-PERFORM CLOSE StudentFile STOP RUN what will be output