You could try ERBSCAN. It is supplied by IBM and it worked great for me! Just make sure the SERBCLS dataset is allocated and issue the ERBSCAN command on 3.4!
Thank you, Wayne Schroeder MAINFRAME STORAGE ADMINISTRATOR T 254.399.5070 M 254.644.8534 E [email protected] 7420 Fish Pond Rd. Waco, TX 76710 WWW.TXFB-INS.COM CONFIDENTIALITY STATEMENT: The foregoing message (including attachments) is covered by the Electronic Communication Privacy Act, 18 U.S.C. sections 2510-2521, and is CONFIDENTIAL. If you believe that it has been sent to you in error, do not read it. If you are not the intended recipient, you are hereby notified that any retention, dissemination, distribution, or copying of this communication is strictly prohibited. Please reply to the sender that you have received the message in error, then delete it. Thank you.-----Original Message----- From: IBM Mainframe Discussion List [mailto:[email protected]] On Behalf Of John Dawes Sent: Wednesday, September 12, 2012 8:08 AM To: [email protected] Subject: Re: UTILITY TO READ SMF RECORDS Ron, Good idea. I'll see if this is feasible. Thanks. ________________________________ From: Ron Hawkins <[email protected]> To: [email protected] Sent: Wednesday, 12 September 2012 9:00 AM Subject: Re: UTILITY TO READ SMF RECORDS John, You can read the SMF files on one LPAR through FTP on another where you have SAS and MXG installed. You can do this using the FTP keyword in the FILENAME statement. On Windows the syntax for a concatenation is: FILENAME SMF FTP ( "'BCSMF.SMFDUMP.IL01.D120411.T050649'" "'BCSMF.SMFDUMP.IL01.D120411.T075856'" ) USER='tsouser' HOST='xxx.xxx.xxx.xxx' DEBUG S370VS RCMD='SITE RDW' LRECL=32760 PASS='password'; You may need to validate this syntax on z/OS. Ron > -----Original Message----- > From: IBM Mainframe Discussion List [mailto:[email protected]] > On Behalf Of John Dawes > Sent: Wednesday, September 12, 2012 5:15 AM > To: [email protected] > Subject: [IBM-MAIN] UTILITY TO READ SMF RECORDS > > G'Day, > > I am trying to track down the deletion of 3 PDS dsns. I have the SMF tapes > and I was able to isolate all the TYPE 17 records for that day. > However I am > having difficulty finding them in the output |(below is the jcl I > used). Does > anybody have a utility which would make the output readable? I would > have tried SAS or FDRQUERY however this partition does not have it installed. > > //STEP1 EXEC PGM=IFASMFDP > //INDD1 DD DSN=SYS2.SMFDATA.WEEK.G1584V00,DISP=SHR > //OUTDD1 DD DSN=&&SM11, > // DISP=(,PASS),UNIT=SYSDA,SPACE=(CYL,(150,150),RLSE), > // DCB=(RECFM=VBS,LRECL=32760,BLKSIZE=4096) > //SYSPRINT DD SYSOUT=* //SYSIN DD * > INDD(INDD1,OPTIONS(DUMP)) > OUTDD(OUTDD1,TYPE(17:17)) > DATE(2012250,2012252) > /* > //STEP2 EXEC PGM=IDCAMS,TIME=1440 > //DD1 DD DSN=&&SM11, // DISP=(OLD,DELETE), // > DCB=(RECFM=VBS,LRECL=32760,BLKSIZE=4096) > //SYSOUT DD SYSOUT=* //SYSPRINT DD SYSOUT=* //SYSIN DD * > PRINT INFILE(DD1) DUMP > /* // > > Thank You all in advance. > > ---------------------------------------------------------------------- > For IBM-MAIN subscribe / signoff / archive access instructions, send > email to > [email protected] with the message: INFO IBM-MAIN ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN
