how to see the last records in vsam dataset??
Answer / dave
Depends.
If you're talking CICS, set the key of the VSAM file to
high-values, do a STARTBR to position the pointer, and
execute a READPREV to get the last record.
In batch, set the key to high-values, and execute a READ
Key < Key.
| Is This Answer Correct ? | 9 Yes | 5 No |
Why is it required to have a keyed directed retrieval?
Under idcams, multiple functions can be executed, each of which returns a condition code. What will be the condition code returned to the operating system?
Can AMS commands be run from the TSO prompt ?
can we create PS file using IDCAMS utility?
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 is record management performed 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
Tell me how many alternate indexes you can have on a dataset?
What is the Difference between LDS & ESDS ?
what is the drawback of vsam dataset?? a.execution slow. b.free space. c.independent storage device. d.none of the above. let me know the answer with reason.
what are s0c1, s0c4, s0c5, s0c7 abends?
How do you initialize a VSAM file before any operation? a VSAM with alternate index?