IDMS

  • 1.  SMF with PMIRPTS

    Posted May 22, 2017 01:33 PM

     Here's my SYSIN:

    //SYSIN    DD *          
      DATABASE DICTNAME=SYSDIRL
      PARAM=NOLIST            
     =COPY 'PMIRPT00'         
     =COPY 'PMNAME'           
     =COPY 'PMIRPT99'         
     =COPY 'PMIRPT01'         
     =COPY 'PMIRPT02'         
     =COPY 'PMIRPT04'         
     =COPY 'PMIRPT05'      

     

    Some other DD names:

     

    //SYS010   DD *                          
    SPARSE                                   
    CV NUMBER 50                             
    //SYS011   DD DSN=&hlq..SMFIDMS,DISP=SHR  

     

    The file at SYS011 has been extracted from the larger site SMF file. We use Type 249 for IDMS SMF. How do I tell Culprit I'm interested in Type 249?

    I've done this in the past but never at current site. Can't find any examples that use SMF either. Thanks.    



  • 2.  Re: SMF with PMIRPTS
    Best Answer

    Posted May 22, 2017 01:47 PM

    We use a two step process.   We select 231 records in step one, then process those records and specify the reports in step two.

     

    I can send example if you need one.

     

    //SYSIN    DD  *                
     DATABASE DICTNAME=SYSDIRL      
    =MACRO 'PMSMFEX' (231)         
    =MEND    

     

     

    this is described in the r19 performance monitor system admin guide on pg 36 of chpt 3 shows                        



  • 3.  Re: SMF with PMIRPTS

    Posted May 24, 2017 08:09 AM

    It's also possible to dump only your selected SMF type record via the IFASMFDP utility and then run the PMSMFEX job

    to make it readable for the PMIM reports.

    The input SMF dataset can be the online SMF dataset (MANx) or the archived SMF dataset.

    It is also possible to select the record for a certain date

     

    //RUNSMFDP JOB  MSGLEVEL=(1,1),NOTIFY=&SYSUID                   
    //SMFDMP   EXEC PGM=IFASMFDP                                    
    //DUMP03   DD DSN=SYS1.MANx,DISP=SHR
    //DUMP04   DD DSN==&hlq..SMFIDMS,DISP=SHR                                              
    //SYSPRINT DD SYSOUT=*                                          
    //SYSIN    DD *                                              
    INDD(DUMP03,OPTIONS(DUMP))                                      
    OUTDD(DUMP04,TYPE(249))