how will u pass dadta to cobol+db2 program...?
Answers were Sorted based on User's Feedback
Answer / mahe
1.Through PARM parameter in JCL
2.Through SYSIN DD * in JCL
3.Through file
| Is This Answer Correct ? | 17 Yes | 0 No |
i declare a Table as OCCURS 2000 TIMES.If the input file has more than 2000 records will the COBOL program fail?
how many divisions are there in cobol
What are the differences between OS VS COBOL and VS COBOL II?
What is the difference between static call & Dynamic call?
what are the error codes in cobol, db2, cics, vsam , and jcl
what is the use of filler in cobol programing?
How do u find the programs calling the given module, without having doing 3.13 on loadlib/source library?
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
What is the difference between write & move in COBOL?
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
What is the significance of the PROGRAM-ID paragraph? If this name doesnt match with the name of the COBOL program, does it make a difference? Is the name specified in the PROGRAM-ID paragraph used as a name for the load module or any such thing?
I have 2 dimensional array with having 100 elements. So how to find the 11th item in an array?