| Recent Answers |
 |
 |
2008-10-07 Cobol - File Handling Issue: The easyest is to read the sort file and store in a KSDS (VSAM INDEXED) file. Then read randomly. If you MUST do it your way, you need to check to see if you have already passed the required record in...
|
2008-10-03 Cobol - Arrays in cobol: A simple 3 dimensional array would be days of the month within month with year. In COBOL the lowest level of such an array would be as shown: 01 table-3-d. 02 table-year occurs 10 indexed by xy....
|
2008-09-17 Cobol - VS Cobol to enterprise cobol conversion: This error is raised for a number of commands in error conditions. It should not be related to the conversion of language levels. First, you need to determine the EXACT command that is causing the...
|
2008-09-16 Cobol - MVS COBOL: DISPLAY STATEMENT PERFORMANCE: Yes BLOCKSIZE on sysout (normally COBOL will open with BLKSIZE=0 so the system will assign). Moving the data to a numeric character area may improve the appearance of the output, but probably not speed...
|
2008-09-15 Cobol - MVS COBOL: DISPLAY STATEMENT PERFORMANCE: If I understand you are saying 35 min 23 sec CPU in 2 hr, 44 min, 38 Secs elapsed! While this may be affected by the 400,000 lines of sysout display, how is the output blocked? By itself display is...
|