How do u debug a S0C7 abend? (aswered till we get the field
which caused that)
After knowing the field which caused that how do u know the
record which caused that if it is in production env? (dumb)
Ok let us assume that we got to know that 100th record
caused that and I wanted to skip only 100th record from the
file and process from 101th.
How to do that in JCL using SORT? (tried with STOPAFT
but ended up dumb when he said smthing else is ther)
Answers were Sorted based on User's Feedback
Answer / sandeep negi
If you came to know which field is responsible for that.
you can run your testjcl with output file DISP parameter as
(NEW,CATLG,CATLG), by doing so, your output file will get
created irrespective of SOC7 abend becuase the last record
of your outuput file will be responsible for generating
abend.
Now you can strip off that record (because its bad data)
and run your jcl.
How to Skip any record through JCL -
You can use ICETOOL
//S1 EXEC PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//IN DD DSN=... input file
//OUT DD DSN=... output file
//TOOLIN DD *
SUBSET FROM(IN) TO(OUT) REMOVE INPUT RRN(100)
this will remove 100th record from your file and will copy
rest all records into ouptput file.
| Is This Answer Correct ? | 3 Yes | 0 No |
how many bytes does s9(15) occupy in comp1 comp2 and comp3 ?
Explain what you understand by passing by value.
can i give 9(10) in comp 3 instead of s9(10) ? if i can give wht would be ths ans
which of the following can be used as a check protection symbol a.Z b.S c.* d.+
What is the significance of 'above the line' and 'below the line'?
what is filler and what is use of filler
what is label record is standard or omitted in file description of data division?
what is difference between cobol and cobol/400
If you were passing a table via linkage, which is preferable - a subscript or an index?
wht happens if we dnt give scope terminator ?
what is MSGLEVEL?
How is sign stored in a COMP field ?