db2 variable decimal(15,2) what is the equalent size of
cobol variable
Answer Posted / ch.mohan
9(13)v9(2)
| Is This Answer Correct ? | 12 Yes | 8 No |
Post New Answer View All Answers
What is a SSRANGE and NOSSRANGE?
Have you used comp and comp-3 in your project? And how?
how do you reference the esds vsam file formats from cobol programs
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
Name the divisions, which are available in a cobol program?
how do you reference the ksds vsam file formats from cobol programs
State the various causes of s0c1, s0c5 and s0c7.
What is the LINKAGE SECTION used in COBOL?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
What is the problem of ordered sequential files access?
Difference between array and sub-script ?
please..could u give an example about USAGE IS POINTER ..and explain why and when we use it ?
What are the different rules of SORT operation?
I have one ps file in which there are 3 fileds emp_no,emp_name and leave_app.this ps file information give the detail of employee which is going to apply for leave.suppose emp_no=113430,emp_name=ajay,leave_app=1 that means he is going to apply for 1 day leave.and accordingling the table in db2 will be updated means if he has that no of leave in his account then he will get dat leave and updated acc. in table(leave_balance=previous leave present in table-leave_app).Now i want to check whther the updated result is correct or not by comparing the two ps file using IEBCOMPARE or icetool so what is going to be the two ps file and how its is going to be compare.