JCL

How to Create an SMF report using DFSORT ICETOOL

The following JCL is an example on how to use IBM DFSORT ICETOOL utility to produce a report on SMF records (record type 80 in our example): //SMFRPTR EXEC PGM=ICETOOL //RAWSMF DD DISP=SHR,DSN=SYS2.WEEKLY.SMF(0) // DD DISP=SHR,DSN=SYS2.WEEKLY.SMF(-1) // DD DISP=SHR,DSN=SYS2.WEEKLY.SMF(-2) // DD DISP=SHR,DSN=SYS2.WEEKLY.SMF(-3) //TEMPSMF DD DSN=&&TEMPS,SPACE=(CYL,(15,15)),UNIT=SYSDA //REPORT DD DSN=USER1.SMF.REPORT,DISP=OLD //TOOLMSG DD […]