In the COBOL SELECT statement what is the ORGANIZATION for a
KSDS?
Answers were Sorted based on User's Feedback
Answer / di
organization as Indexed and you can use any access mode (Sequential, Random or Dynamic) with KSDS dataset.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the maximum no. of records that can be allowed 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
What is the meaning of the DEFINE MODEL parameter?
Suppose a generation of GDG gets created in a particular step of a proc. How would you refer the current generation in a subsequent step? What would be the disposition of this generation now?
What are the common vsam error conditions and codes?
How do I declare the KSDS vsam so that I can store a reocrd with variable length?.
what is a Base Cluster?
What is the significance of the SHAREOPTIONS parameter?
In a file(PS), we dont know how many records are there. requirement is divide half n half the records n insert into 2 another files(PS).
What are all the ways we can create datasets?
How can you create a VSAM dataset? Can you write a JCL for it?
how to see the last records in vsam dataset??