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 |
Write a program that uses move corresponding.
How do we get current date from system with century?
suppose a cobol programme A calling programme B,C and D. If C undergoes some change what if A,B,C,D need to be recompiled or only C nee to be recompliled.
What is the Linkage section? What is the Use and Why the parm length use alway "PARM-LENGTH PIC S9(4) or PIC S9 (4) COMP." any reason?.Please let me know any one... Cheers,Prasad
subscript and index r not coded in u r application program what will happen?
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this
What is the difference between a DYNAMIC and STATIC call in COBOL?
What will happen if we generate GDG +2 version instead of +1 version?
Write the syntax of a two dimensional array?
What is report-item?
where do u use low-value and high value in cobol
Consider the following code: 77 A PIC 99V99 VALUE 55.35 77 B PIC 99V999 VALUE 32.754 ADD B TO A ON SIZE ERROR DISPLAY "ERROR!!!" What will be the result ? (a) A=88.10, B=32.754 (b) A=87.00 B=32.754 (c) A=87.10 B=32.754 (d) ERROR!!! will be DISPLAYed on the screen.