db2 variable decimal(15,2) what is the equalent size of
cobol variable
Answers were Sorted based on User's Feedback
Answer / quasar chunawala
The correct COBOL Field that can hold the Value of DECIMAL
(15,2) SQL Field should be declared as
05 WS-COBOL-DECIMAL-FIELD PIC S9(13)V9(02) COMP-3.
| Is This Answer Correct ? | 29 Yes | 3 No |
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
what is the difference between Plan & package?
)what is retrieve?
how many bytes does a s9(12)COMP-4 field occupy?? a.2 b.4 c.8 d.1 ans with reason please
what is the minimum number of lines a Cobol program should have to successfully compile and run
11 Answers ABC, Societe Generale,
Is It Possible to Update or change in VIEW Mode?
is it mandatory to give data division before procedure division ? wht happens if i give procedure division first thn data division ? reply soon
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?
I got user abend U4038 while compiling my runjcl.. can anyone help me?
Size of a column has been changed in DB2 table (Suppose it was of 5 characters and later changed to 4 characters) and forgot to change the DCLGEN in COBOL program, what will happen during the execution of code? If the program Abends then what will be the error? If it doesn't abend then hpw the error can be catched?
What is the difference between index and subscript?
when iam reading a flat file which has 100 records through cobol program when iam reading 50th records it gets abends .. so when i run the program again it should read from 50th record .where it got abened ? how it is possible