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 |
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
What is tne need to use sub programs in Cobol?
01 a pic 9(9v99) 01 b pic 9(9.99) wht will be the stored vales in both cases
01 a pic 9(6) value is 123456 01 b pic 9(3) move a to b wht will be the value ?
If there are two copybooks which have same variables and we are using both the copybooks in our program. will there be an error and if i move values to the variable which copybook varibales gets the values i move in.
What happens in the background of spool when we submit a job for compilation and execution... This is a recent question in ibm...Kindly help me.....
I have dataset DS1 which has records say 1 2 3 4 5 ... ... etc And also I have second dataset DS2 whcih has records 1 3 4 5 6 8 .. ... Both the files are sorted and now I want to compare these files and write it into the third files if the records are matching.
What is redefines clause in COBOL?
How many bytes do a s9 (7) comp-3 field occupy?
how do you reference the fixed unblock file formats from cobol programs
What are the rules of the move verb?
how to transfer the file from pc to mainframe??