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 |
What is the difference between external and global variables in COBOL?
Can JUSTIFIED be used for all the data types?
What is static and dynamic call in cobol?
Write the code to count the sum of n natural numbers.
is it mandatory to give data division before procedure division ? wht happens if i give procedure division first thn data division ? reply soon
What is XDC ?
How to convert bunch of words in a line to relvant ASCII values?
What is the maximum length of a field you can define using COMP-3 in COBOL?
what is the difference between Normal vaiable and comp variable.
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
I have the file which is having the extension no as records. sample file will look like below. 2310 3410 3256 4350 3781 5408 I need to replace the record which is starting with 3 to 5 (i.e) 3410 to 5410. How can we do it through cobol and cobol-db2 program? I need the possible logic?
01 a pic s9(5) value '-12345' how it will be stored