I have a input file.
Data like: ABCDEFGH....
i want out put file like
AB
BC
CD
DE....How can do this??
Answer Posted / prakash
using inrec in sort utility , we can perform it.
//sysih dd *
sort fields = copy
inrec fields = (10:1,2, 13:2,2, 16:3,2)
(or)
using reference modification in cobol.
| Is This Answer Correct ? | 7 Yes | 6 No |
Post New Answer View All Answers
Is automatic restart possible in jcl? If yes, how?
a dd statement has 2 types of parameters. Name them?
what is the use of IEBGENER utility?
What is the significance of addrspc parameter in the exec statement?
What is one line to pass PARM from JCL to COBOL?
what is the purpose of coding class parameter in job statement?
Is it possible to left uncode disp?
Explain the function of the steplib dd statement?
How is a type of file defined in the jcl that executes the cobol program?
How can a fb file convert to vb file using sort program?
What is notcat 2 - gs?
How to pass the parameter in parm using linkage section ? (syntax)?
Explain the function of dd name parameter with a 2 part structure; audit.report?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
How to resolve the error "WER488A JOIN CAPACITY EXCEEDED" I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem? I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem?