What are the different ways to run a COBOL DB2 program
using JCL?
Answers were Sorted based on User's Feedback
cobol + db2 programs can be compiled by using precompiler(dsnhpc)...wich saperates cobol and db2 statements.
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ravikumar
using ikjeft01 utility
//systsin dd *
run program(pgm name) plan(plan name)
lib(lib name)
//
Is This Answer Correct ? | 2 Yes | 1 No |
How do you code Cobol to access a parameter that has been defined in JCL?
How arrays can be defined in COBOL?
given the following: 77 A PIC 9V9 VALUE 9.5 77 B PIC 9 VALUE 9. 77 C PIC V9 VALUE 0.8 77 D PIC 9 77 E PIC 9 77 F PIC 9V999 what are the contenta of D E nad F after the following statements are executed: COMPUTE F ROUNDED=A+C/B MULTIPLY A BY C GIVING E ADD B C A GIVING D ROUNDED a.F=9.589 E=8 D=1 b.F=9.589 E=8 D=9 c.F=9.589 E=7 D=9 d.F=9.589 E=7 D=1
Please let me know how the Eject verb works for page break.. I want to know the code, how it is used.
What is the difference between Call and a Link?
in cobol main pgm is calling sub pgm but sub pgm does not exists , what abend i get if submit the job?
How do you fetch current date in normal cobol pgm and in cobol-db2 pgm?
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
why we are using picture clause in the cobol programs?
hi dudes.....can any one help me..... what is SET TO TRUE all about,anyway?
i have n records in one file and in this file there is some fields and i want to count that how many sharma in my file so plz give the coding that how we read sharma ?
what are the limitations of Inline Perform?