By seeing the file itself how can we identify whether it is
A vsam file or flat file
Answer Posted / rajvee
VSAM file will have data file and Key file.
Flat file will have only data.
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
what do you mean by gdg in vsam?
Define free space?
Explain the purpose of the file status clause in the select statement?
Is it slower if you access a record through alt index as compared to primary index?
what do you mean by a upgrade set in vsam?
is it necessary that all versions of the gdg have to be of the same record length?
Explain what are the optional parameters to the input dataset while loading the empty cluster with the data records?
State the differences between vsam and non-vsam files?
explain how do you define a gdg in vsam?
How do you define an altindx?
Describe the uses of ams?
difference between vsam and database tables
what does a file status of 02 on a vsam signifies?
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
What is the use of lds (linear data set)?