Answer Posted / murali
DFSORT does not support the XSUM parameter provided by a
competitive sort
product to write records deleted by SUM processing to a
SORTXSUM DD data
set. However, ICETOOL’s SELECT operator can perform the same
function as
XSUM with FIELDS=NONE. For example, this ICETOOL job:
u can use by this way
//S1EXEC PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//SORTIN DD DSN=...
SUM Control Statement
//SORTOUT DD DSN=...
//SORTXSUM DD DSN=...
//TOOLIN DD *
SELECT FROM(SORTIN) TO(SORTOUT)-
ON(5,4,CH) FIRST DISCARD(SORTXSUM)
/*
| Is This Answer Correct ? | 13 Yes | 6 No |
Post New Answer View All Answers
When space is allocated for an output dataset, what units can be used?
What is multithreading in jcl?
How is the record format of an output dataset specified?
what sort card you will use to copy the data from one dataset to another dataset?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
How does jcl specify the job to the operating system?
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
What is the purpose of the dd keylen parameter?
What is the significance of addrspc parameter in exec statement?
what JCL Procedures?
Explain the function of dd disp parameter?
Explain in DD statement what is the use of DCB parameter?
What is one line to pass PARM from JCL to COBOL?
What are steplib and joblib?
How can a fb file convert to vb file using sort program?