How to insert values for variables that are declared as
COMP-3 variables in COBOL program in an already created
VSAM file.
Answer Posted / guest
thats gr8. consider this situation. Since i am using COMP-3
variables, i have allocated only 10 bytes while i created
VSAM. But then i want to edit variables of 20 bytes. How to
then?
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what do you mean by the repro command?
How do you define an altindx?
What are the steps involved in access method services?
What is control area?
What are the building blocks used in vsam datasets?
what is the purpose of the verify function of idcams?
in a cobol select statement for a ksds can you tell me what are the 3 possibilities for access?
explain how many ways you can load data in a vsam cluster?
to use the rewrite command, how should the vsam file be opened?
difference between vsam and database tables
Explain about the file objects in vsam?
What is the place for VSAM KSDS?
explain how do you define a gdg in vsam?
how do you define an altindx ? How do you use altindxs in batch, cics programs?
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