Why doesn't ALL_INFO_REPORT command produce any statistics on MUF joblog?
search cancel

Why doesn't ALL_INFO_REPORT command produce any statistics on MUF joblog?

book

Article ID: 11597

calendar_today

Updated On:

Products

Datacom Datacom/AD Datacom/DB

Issue/Introduction

I issued the console command "/F mufname,ALL_INFO_REPORT PXXDST" to a Datacom/AD MUF to have several Datacom statistics printed to MUF joblog. The command successfully completed:

15.51.08 STC20979 DB01311I - ALL_INFO_REPORT PXXDST 
15.51.08 STC20979 DB01335I - CONSOLE SCHEDULED - ALL_INFO_REPORT PXXDST
15.51.08 STC20979 DB00608I - CONSOLE COMPLETE - ALL_INFO_REPORT PXXDST

but no statistics are printed to the joblog.

Why aren’t the statistics printed and how can I get them?

Environment

Release : ALL

Component : Datacom/DB

Component : Datacom/AD

Resolution

This occurs because there is no SYSOUT card in the MUF Startup Options (SYSIN) of the MUF region.

The statistics are actually saved on the PXX dataset and can be easily printed running a DBUTLTY PXX REPORT.

//PXXRPT   EXEC PGM=DBUTLTY 
//STEPLIB  DD  DISP=SHR,DSN=datacom.hlq.CUSLIB  
//         DD  DISP=SHR,DSN=datacom.hlq.CABDLOAD (or CAAXLOAD)         
//PXX      DD  DSN=datacom.hlq.PXX,DISP=SHR     
//SNAPER   DD  SYSOUT=*                             
//SYSOUT   DD  SYSOUT=*                             
//SYSPRINT DD  SYSOUT=*                             
//SYSUDUMP DD  SYSOUT=*                             
//SYSIN    DD  *                                     
 REPORT AREA=PXX,DUMPS=TRACE
/* 

Additional Information

For detailed info about ALL_INFO_REPORT PXXDST command, please see Knowledge Base article 40242, titled "Producing EOJ statistics without shutting down Datacom MUF."