IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Pulling NDM statistics using DMBATCH


IBM Mainframe Forums -> All Other Mainframe Topics
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
ram5er

New User


Joined: 14 Jul 2006
Posts: 14
Location: Dallas, Texas

PostPosted: Sat Dec 16, 2006 1:53 am
Reply with quote

How do you to pull NDM statistics (ex. i/o byte count, vtam counts) using DMBATCH. Need statics for a full year on all transmissions.
Back to top
View user's profile Send private message
priyesh.agrawal

Senior Member


Joined: 28 Mar 2005
Posts: 1448
Location: Chicago, IL

PostPosted: Sat Dec 16, 2006 11:57 am
Reply with quote

If you have CONNECT:Direct IUI enabled.

Choose SS for select statistics then at next screen you can specify process number and it would give you output statistics for a NDM transmission.

In this screen there I believe you can also specify a starting date & end date as a search criteria.
Back to top
View user's profile Send private message
ram5er

New User


Joined: 14 Jul 2006
Posts: 14
Location: Dallas, Texas

PostPosted: Sun Dec 17, 2006 3:14 am
Reply with quote

Understand this is a way to pull info online but I am trying to pull the statistics in a batch program. Need to generate reports from a file of these statistics.
Back to top
View user's profile Send private message
Kevin

Active User


Joined: 25 Aug 2005
Posts: 234

PostPosted: Thu Dec 21, 2006 1:43 am
Reply with quote

You still use the SELECT STATISTICS command in your DMBATCH job. For example:

Code:

//*                                                                 
//STEP1    EXEC PGM=DMBATCH,PARM='YYSLYNN'                         
//DMMSGFIL DD ...NDM.MSG,DISP=SHR               
//DMNETMAP DD ...NDM.NETMAP,DISP=SHR             
//DMPUBLIB DD ...PROCESS.LIB,DISP=SHR               
//DMPRINT  DD   SYSOUT=*                                           
//NDMCMDS  DD   SYSOUT=*                                           
//SYSIN    DD   *                                                   
  SIGNON ESF=YES                                                   
  SEL STAT WHERE (STARTT=(12/20/06,00:00:00)) TYPE=CT TAB           
  SIGNOFF                                                           
//*                                                                 


Check the CONNECT:Direct for OS/390 User's Guide for the details of the SELECT STATISTICS Command.
Back to top
View user's profile Send private message
ram5er

New User


Joined: 14 Jul 2006
Posts: 14
Location: Dallas, Texas

PostPosted: Fri Dec 22, 2006 1:34 am
Reply with quote

this works great!!!

However, instead of using "TAB" I am writing using "FILE". Some fields are binary.

SEL STAT WHERE (STARTT=(12/20/06,00:00:00)) TYPE=CT TAB

Do happen to know the layout of the CT transactions?

thanks for you help.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> All Other Mainframe Topics

 


Similar Topics
Topic Forum Replies
No new posts Pulling a fixed number of records fro... DB2 2
No new posts DB2 Statistics - Using EXPLAIN and qu... DB2 1
No new posts Extracting Compression Statistics fro... PL/I & Assembler 2
No new posts Program level statistics CICS 6
No new posts CICS Performance statistics CICS 3
Search our Forums:

Back to Top