What is the maximum data length for Numeric DataType ?
Answer Posted / shekh
BY USING COMPILER OPTION MATH, IT WILL INCREASE THE VARIABLE CAPACITY UP TO 31 DIGITS.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What kind of error is trapped by on size error option?
Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.
State the various causes of s0c1, s0c5 and s0c7.
What is the difference between next sentence and continue in cobol programing language?
How to know whether the module is dynamical or statistical?
What are various search techniques in cobol? Explain.
For rewrite, why is it mandatory that file needs to be opened?
What are the different open modes available in cobol?
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?
When is inspect verb is used in cobol?
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......
how to convert the recors form vsam file to db2 table tru file aid
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?
What is the difference between PIC 9.99 and PIC9v99?
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.