http://www.mxg.com/product_info
Barry -----Original Message----- From: IBM Mainframe Discussion List [mailto:[email protected]] On Behalf Of Tracy Adams Sent: Thursday, September 1, 2016 12:16 PM To: [email protected] Subject: Re: SAS and SMF 110 subtype 1 question How much is MXG these days? Thanks! -----Original Message----- From: IBM Mainframe Discussion List [mailto:[email protected]] On Behalf Of Barry Merrill Sent: Thursday, September 01, 2016 12:41 PM To: [email protected] Subject: Re: SAS and SMF 110 subtype 1 question The 12-byte clock/counter fields in CICS SMF 110 subtype 1 records contain the duration of the clock and the number of times that clock was updated: INPUT TASCPUTM &PIB.8.6 /* DEC= 8 USRCPUT */ TASCPUCN &PIB.4. /* DEC= 8- DITTO */ @; TASCPUTM=TASCPUTM/4096; FORMAT TASCPUTM TIME12.2; However, processing those records is more complicated, since the USRCPUT contains both the CP and zIIP engine CPU times so you will also need to find the other field, input it, and subtract from TASCPUTM to create the CICS CP Engine CPU time. And there are multiple transaction segments per physical record. And don't forget to deal with EXCLUDED fields. Merrilly yours, Herbert W. Barry Merrill, PhD President-Programmer Merrill Consultants MXG Software 10717 Cromwell Drive technical questions: [email protected] Dallas, TX 75229 http://www.mxg.com admin questions: [email protected] tel: 214 351 1966 fax: 214 350 3694 -----Original Message----- From: IBM Mainframe Discussion List [mailto:[email protected]] On Behalf Of Tracy Adams Sent: Thursday, September 1, 2016 11:30 AM To: [email protected] Subject: Re: SAS and SMF 110 subtype 1 question I do not have either product :-( -----Original Message----- From: IBM Mainframe Discussion List [mailto:[email protected]] On Behalf Of Lizette Koehler Sent: Thursday, September 01, 2016 12:07 PM To: [email protected] Subject: Re: SAS and SMF 110 subtype 1 question Do you have SAS/MXG or SAS/MICS? It will make it easier to work with these records. Lizette > -----Original Message----- > From: IBM Mainframe Discussion List [mailto:[email protected]] > On Behalf Of Tracy Adams > Sent: Thursday, September 01, 2016 7:41 AM > To: [email protected] > Subject: SAS and SMF 110 subtype 1 question > > I am reading the 110 records with SAS and I want to extract the > pertinent cpu time fields from the connector records... I have figured > out looping of the connectors and mapping to the dictionary and have > determined the first field I want (cpu dispatch time) is at +480. The > CICS documentation indicates it is a "stopwatch" type and is 12 bytes > long. I have tried many different SAS formats and have not gotten it > right! What is the correct SAS input statement and the corresponding format? > > TIA, Tracy ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN
