Dear all,
My application has below SORT utility in JCL and basically SORT is used here to copy large data from large VSAM file to a flat file as a backup purpose
//S010 EXEC PGM=SORT
//SORTIN DD DSN=Large vsam file,DISP=SHR,
// AMP=(AMORG,'BUFND=20')
//SORTOUT DD DSN=flat file,
// DISP=(NEW,CATLG,DELETE),
// UNIT=CART,LABEL=EXPDT=99000,VOL=(,,,99),
// DCB=PRD.T.LRECL150
//*
//SYSIN DD DSN
SORT FIELDS=COPY
Above process is nearly taking more time to run and please suggest me if any improvements can be done or else any utility that can replace above.
Thankyou very much,
Prasadg