I need to compare two VSAM files, both having 'number' as
key. If there is a matching record, write the data into
another VSAM file. How will it be possible.
Answer / mainframe_learner
Declare one VSAM as sequential read and another as random
access. And then try to read the files.
| Is This Answer Correct ? | 8 Yes | 0 No |
What are the functions like c or c++ in cobol?
how to move the records from file to array table. give with code example
01 A pic 9(100) find record length of it
can i give 9(10) in comp 3 instead of s9(10) ? if i can give wht would be ths ans
Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all
record length in spool?
How to pass return codes from cobol to jcl?
what is record label is empty or standard in file description of data division?
I want to declare a field with data type Double in my COBOL program. how shall i do that ?
give the examples of strings in cobol
How do you define a table/array in COBOL?
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?