I have sequential file recl 1000 i want to add another 15
bytes to it. The record length should not change..How?
Answer / sadiq
Change the existing char field to compressed format, so that we can adopt space for the 15 bytes
| Is This Answer Correct ? | 0 Yes | 0 No |
I need to compare two VSAM files, both having 'number' as key. If there is a matching record, write the data into another VSAM file. How will it be possible.
Are you comfortable in cobol or jcl?
How can you declare the file ?
can we display comp-3 variables. if we want to display what we have to do . give me one example
What is file status 92?
ID DIVISION. PROGRAM-ID. PLO. DATA DIVISION. WORKING-STORAGE SECTION. 01 VAR1 PIC 9(2). 01 VAR2 PIC X(2). PROCEDURE DIVISION. ACCEPT VAR2. MOVE VAR2 TO VAR1. STOP RUN. if i give 'PI' in var2 then what will b output of progr. any abend?????
State the various causes of s0c1, s0c5 and s0c7.
What is the difference between Structured COBOL Programming and Object Oriented COBOL ?
How do we get current date from system with century?
What is the difference between NEXT SENTENCE and CONTINUE?
I have a sequential file of 100 records. How do I load the records into a two dimensional array ?
How can I find the maximum value of a field in a file while reading the file dynamically? without using sort function. Suppose i have a file with fields Timestamp, description, teamname, teamnumber.. i have read the file till end and find the maximun value of timestamp which is not in sorted order.. can we use function max(timestamp)?