What is the procedure for running the batch job in
mainframe?
What's a LDS (Linear Data Set) and what's it used for?
In the COBOL SELECT statement what is the ORGANIZATION for a KSDS?
Describe SHAREOPTIONS parameter (SHR) in Define Cluster command.?
why do we use vsam file thn seqential files ?
What is a lds (linear data set) and what is it used for?
How do you load a VSAM data set with records ?
is there any lock for vsam file so that no one can update the vsam file ?
HOW TO SORT RECORDS IN VSAM FILE?
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?
is it slower if you access a record through alternative index as compared to primary index?
what is the concept of IMPORT in vsam??
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