explain in brief how are different versions of gdg named?
No Answer is Posted For this Question
Be the First to Post Answer
Using alternate indexes in batch program?
Define base cluster?
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?
I have three fields in a Variable VSAM file X(2) Y(10) occurs X times Z(02) Say for the first record X=2 then the length of the file is 2+(10*3)+2=34 second record, x=4 then 4+(10*4)+2=46 If any time if the field x is updated then the total length changes. Is it feasible? Is it
How many times secondary space allocated?
Is CA(Control Area) is part of CI(Control Interval)
How did you refresh a VSAM file and how frequently you do it ?
3 Answers CSC, IBM, Patni, Xansa,
How many Alternate Indexes you can have on a dataset?
What is a path?
The first VSAM file V1 has 2 fields A and B . There is a DB2 file which has fields E and f. We need the fields A, B , E and F to another VSAM file called V2. Kindly mention the logic in procedure division in cobol..
what are the codes returned by the ams (access method services) command during the execution 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