Hi,
Currently I am using the below mentioned format to sort my dataset. I would like to know is there is any other SORT untility will perform the same action with less time when compare to this option...
XXPS010 EXEC PGM=SORT
//PS010.SORTIN DD DSN=Dataset.G0001V00,
// DISP=SHR
// DD DSN=Dataset.G0002V00,
// DISP=SHR
// DD DSN=Dataset.G0003V00,
// DISP=SHR
// DD DSN=Dataset.G0004V00,
// DISP=SHR
// DD DSN=Dataset.G0005V00,
// DISP=SHR
// DD DSN=Dataset.G0006V00,
// DISP=SHR
// DD DSN=Dataset.G0007V00,
// DISP=SHR
// DD DSN=Dataset.G0008V00,
// DISP=SHR
// DD DSN=Dataset.G0009V00,
// DISP=SHR
XXSORTOUT DD DSN Dataset.SORT,
XX VOL=(,,,99),
XX DISP=(,CATLG,DELETE),
XX UNIT=CART,
XX LABEL=RETPD=9,
XX DCB=(&DSCB,RECFM=FB)
Note : I am sort the data with some condition mentioned in the control card.
Thanks,
Vinoth