Sent Jim some JCL similar to the following:
/**********************************************************************/ /* JCL TO DUMP SMF RECORDS FROM A LOGSTREAM */ /**********************************************************************/ //STEP1 EXEC PGM=IEBGENER //SYSPRINT DD SYSOUT=* //SYSUT1 DD DSN=xxxx, // RECFM=VB,LRECL=32756,BLKSIZE=32760, // SUBSYS=(LOGR,IFASEXIT,'FROM=OLDEST,TO=YOUNGEST') //SYSUT2 DD DSN=yyyy, // UNIT=SYSALLDA,SPACE=(CYL,(2000,10),RLSE), // DCB=(RECFM=VB,LRECL=32756,BLKSIZE=32760), // DISP=(,PASS),DATACLAS=TMPSPACE //SYSIN DD DUMMY //SMFDP EXEC PGM=IFASMFDP //DUMPIN DD DSN=yyyy, // DISP=SHR //DUMPOUT DD DSN=zzzz, // UNIT=CTAPE,LABEL=RETPD=185, // DISP=(NEW,CATLG,DELETE), // LRECL=32756,RECFM=VB , //* SPACE=(CYL,(2000,10),RLSE) //SYSPRINT DD SYSOUT=* //SYSIN DD * INDD(DUMPIN,OPTIONS(DUMP)) OUTDD(DUMPOUT,TYPE(0:255)) /* Bob -----Original Message----- From: IBM Mainframe Discussion List [mailto:[email protected]] On Behalf Of Horne, Jim - James S Sent: Monday, August 01, 2011 10:42 AM To: [email protected] Subject: Orphaned SMF Logger offload dataset All, We had SMF an SMF logstream get disconnected during an IPL and are trying to figure out how to get the data from the old logstream back. We have renamed it and rebuilt so that our logstreams are working again but I can't see an example of JCL to read the data in the old offload datasets. IBM says you can use IFASEXIT to do it, but I don't see an example anywhere in the manuals - and we've never used it. Can anyone help? Jim Horne NOTICE: All information in and attached to the e-mail(s) below may be proprietary, confidential, privileged and otherwise protected from improper or erroneous disclosure. If you are not the sender's intended recipient, you are not authorized to intercept, read, print, retain, copy, forward, or disseminate this message. If you have erroneously received this communication, please notify the sender immediately by phone (704-758-1000) or by e-mail and destroy all copies of this message (electronic, paper, or otherwise). Thank you. ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

