Tip of the Day:
Its common practice that we recall the dataset using HRECALL command but if we need to recall more number of dataset then we will have to wait so long for all to get recalled and its a waste of time and resource.
Best Practice is do the same in a Batch JOB.
/RECALL EXEC PGM=IKJEFT01,DYNAMNBR=20,TIME=(9)
//SYSTSPRT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSTSIN DD *
HRECALL 'mention the dataset name's common part ' NOWAIT
/*
It works fine
--
Thanks & Regards,
Sivaram Vadivelu.