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
No Answer is Posted For this Question
Be the First to Post Answer
Using Alternate Indexes in CICS pgms: ?
What is the main function of key sequenced data set in vsam?
If you wish to use the REWRITE command haw must the VSAM file be opened?
How to get the last record in vsam file in cluster? And how can u get the ksds file records into cobol program?
in what type of vsam datasets can an alternate index be defined??
Using Alternate Indexes in Batch pgms: ?
to use the rewrite command, how should the vsam file be opened?
What does the keyranges parameter in define cluster command do?
What are the different types of VSAM files available?
Do all versions of the GDG have to be of the same record length ? is it possible to ovverride the dcb of the model dataset?
What is a CI, control interval?
How do you define an ALTINDX ? How do you use ALTINDXs in batch, CICS pgm?s ?