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 ?
Answers were Sorted based on User's Feedback
Answer / bala
It will be always (+1), Since we are creating in one step
and using it in next step. So the Generation will be +1
only. Once the job completed, it will become 0.
| Is This Answer Correct ? | 10 Yes | 0 No |
How to insert values for variables that are declared as COMP-3 variables in COBOL program in an already created VSAM file.
if not using the 'commit' when closing VSAM file,what will happend
What's a LDS (Linear Data Set) and what's it used for?
If you wish to use the REWRITE command haw must the VSAM file be opened?
What is the VSAM-code field?
Explain the significance of the shareoptions parameter?
Explain the biggest disadvantage of using a vsam dataset?
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 VSAM files? How to read this ?
In the COBOL SELECT statement for a KSDS what are the three possibilities for ACCESS?
How many Alternate Indexes you can have on a dataset?
what will happen if there is no secondary allocation made for datasets?