Veryl Ellis wrote: >Is there some tool or technique for determining by date which SMF record (type >70 or 89) is missing, so you can exclude just that portion and not the entire >month?
Look in manual for SCRT in this URL http://www-01.ibm.com/common/ssi/cgi-bin/ssialias?infotype=SA&subtype=WH&htmlfid=ZSL03022USEN#loaded for more details. What record(s) are you missing? Type 70 or 89? You are perhaps excluding some records or something happened that you did not got all records as required. Review your recording methods, else use SCRT Exclude statement to exclude that period on that LPAR. You can use this JCL + ICETOOL which I posted on Oct 2013 on IBM-MAIN to see what interval are you missing: //SMF89 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //VLSHCNTL DD * OPTION COPY,VLSHRT INCLUDE COND=(6,1,BI,EQ,X'59') /* //RAWSMF DD DISP=SHR,DSN=<SMF dsn> //SORTSMF DD DISP=(NEW,DELETE,DELETE),SPACE=(CYL,(50,50,0)) //VREPT DD SYSOUT=* //TOOLIN DD * CONTROL STATEMENTS SORT FROM(RAWSMF) TO(SORTSMF) USING(VLSH) DISPLAY FROM(SORTSMF) LIST(VREPT) - HEADER('SMFTYPE') ON(6,1,BI) - HEADER('DATE') ON(11,4,DT1,E'9999/99/99') - HEADER('TIME') ON(7,4,TM1,E'99:99:99') - HEADER('SYSTEM') ON(15,4,CH) Credits to Frank Yaeger (DFSORT guru, now retired) for this one! ;-) Groete / Greetings Elardus Engelbrecht ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN
