//SORT1 EXEC PGM=SORT
//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR
//SORTLIB DD DSN=SORT.SORTLIB,DISP=SHR
//SYSOUT DD SYSOUT=*
//SORTIN DD DSN=REP.A01.PS,DISP=SHR
// DD DSN=REP.A02.PS,DISP=SHR
//SORTOUT DD DSN=REP.A03.PS,DISP=OLD
//SORT1 EXEC SORT1
//SYSIN DD *
SORT FIELDS=(1,26,CH,A),EQUALS,
FILSZ=E10000000,DYNALLOC=SYSDA
INCLUDE COND=(37,4,CH,EQ,C'1768',AND,80,1,PD,EQ,1)
I am a beginner on JCL, I am already studying for a while, but still confuse it?
EQUALS =>
What's the function in here? Is same with OPTION EQUALS
If I have two input ps files and they are total approximately 1 million records, And the output maybe 0.5 million records, in this case, what number should I enter after FILSZ, and is it necessary ?
FILSZ=En =>