IDMS

  • 1.  How can we process IDMS SMF records?

    Posted Apr 13, 2011 07:04 PM
    Samip Singhal is discussing:
    How can we process IDMS SMF records ?


  • 2.  RE: How can we process IDMS SMF records?

    Posted Apr 13, 2011 07:05 PM
    Dominic Surr says:
    • Hi the SMF can be collected via the IDMS performance Monitit Tool. In the Perforamce monitor tool you have to specify:
    #PMOPT ,
    AMACT=YES,
    AMDCLOG=NO,
    AMSMF=YES,
    IMACT=YES,
    IMDCLOG=NO,
    IMSMF=YES,
    INTVMAX=10,
    INTVSIZ=60,
    DCSTATS=NO,
    TSKWAIT=YES
    END


  • 3.  RE: How can we process IDMS SMF records?

    Posted Apr 13, 2011 07:07 PM
    Gary adds:
    Once the SMF data is written to SMF you have a choice of using SAS and/or Culprit. I find Culprit to be faster and easier. You can use standard IBM utilities for SAS to "split out" the IDMS sub-type(s) so that there is less data to process - here is an example:
    [font=Courier New][color=#060AFF]//*
    //SMFDMP EXEC PGM=IFASMFDP,REGION=512K
    //SYSPRINT DD SYSOUT=*
    //DUMPIN2 DD DSN=????.SMF.MONTHLY,DISP=SHR
    //DUMPOUT2 DD DSN=userId.SMF.D2002011,DISP=(NEW,CATLG,DELETE),
    // UNIT=SYSDA,SPACE=(CYL,(20,10),RLSE)
    //SYSIN DD *
    INDD(DUMPIN2,OPTIONS(DUMP))
    OUTDD(DUMPOUT2,TYPE(210,211))
    DATE(2002011,2002011)
    /* [color][font]
    HTH - cheers - Gary


  • 4.  RE: How can we process IDMS SMF records?

    Posted Apr 16, 2011 08:41 PM
    Jiri Tancer • I am not sure if this is z/OS version dependent, but IFASMFDP has been for getting SMF from files, but there is other option that your SMF records are in LOG stream. For that the IBM program is IFASMFDL

    //STEP01 EXEC PGM=IFASMFDL
    //DUMPOUT DD DISP=(NEW,CATLG,DELETE),
    // DSN=filename,
    // SPACE=(CYL,(10,20),RLSE),
    // UNIT=3390,VOL=SER=VVVV
    //SYSPRINT DD SYSOUT=*
    //SYSIN DD *
    OUTDD(DUMPOUT,TYPE(230))
    LSNAME(name of stream like “IFASMF.XXXX.STREAM”)
    DATE(2011102,2011102)
    START(0312)
    END(0335)
    SID(XXXX)


  • 5.  RE: How can we process IDMS SMF records?

    Posted Apr 16, 2011 08:40 PM
    Henry Hough • Full details for extracting, processing, and reporting, as well as record layouts are contained in the Performance Monitor System Administration Guide.
    Henry