IBM Education Assistance for z/os V2R2

Size: px
Start display at page:

Download "IBM Education Assistance for z/os V2R2"

Transcription

1 IBM Education Assistance for z/os V2R2 Item: GRS EQDQ Monitor Enhancements Element/Component: Global Resource Serialization (GRS) Material current as of May 2015

2 Agenda Trademarks Presentation Objectives Overview Usage & Invocation Interactions & Dependencies Migration & Coexistence Considerations Presentation Summary Appendix Page 2 of 27

3 Trademarks See url for a list of trademarks. Page 3 of 27

4 Presentation Objectives Provide you with insight into the function and purpose of GRS EQDQ Monitor Enhancements Page 4 of 27

5 Overview Problem Statement / Need Addressed: Diagnosing ENQ-related errors is difficult without built-in tracing Understanding RESERVEs or the impact of RNLs as well The GRS EQDQ monitor (ISGAUDIT) provides tracing at the cost of ENQ performance, and its user interface is complex Solution / Approach: Captures ENQ/DEQ diagnostics for problem determination while minimizing impact to system performance Uses SMF 87 (introduced in APAR OA42221 to track Global Generic Queue Scans) More cohesive, understandable filtering than EQDQ Monitor Benefit / Value: Provides ability to establish ENQ/DEQ history, filter on certain requests, and aid in problem determination Inherits the power of SMF (e.g. Logstream recording, exits, etc) Page 5 of 27

6 Usage & Invocation How do I activate GRS Monitoring Enable the GRS Monitoring with existing filtering SETGRS MONITOR=YES Disable the GRS Monitoring SETGRS MONITOR=NO Change the active filters and activate SETGRS GRSMON=xx xx corresponds to GRSMONxx Existing MONITOR(YES NO) keyword in GRSCNFxx No GRSMON(xx) analogue in GRSCNFxx How do I know GRS Monitor status? Display GRS[,SYSTEM] shows MONITOR status and current GRSMONxx Page 6 of 27

7 Usage & Invocation You must ensure that SMFPRMxx includes Type 87 How do I activate SMF Tracing of Type 87 in SMFPRMxx? Specify SYS(TYPE(87(1))) for only subtype 1 QSCAN Specify SYS(TYPE(87(2))) for only subtype 2 ENQ/DEQ Specify SYS(TYPE(87)) for all subtypes SMF 87 Recording in V2R2 drives SMF exit IEFU84 (switch from IEFU85 with OA42221) In V2R2, SMF 87 records are no longer cut under the caller's thread Page 7 of 27

8 Usage & Invocation SMF 87 Subtype 1 QSCAN Includes SMF87RHS (Header), SMF87DEF (self defining section), SMF87REQ (Requester section), SMF87QSCAN (Queue scan section) Cut whenever global generic queue scan is issued Introduced to help track queue scan abusers Page 8 of 27

9 Usage & Invocation SMF 87 Subtype 2 ENQ/DEQ Multiple ENQ/DEQ requests per record, cut within 1 SMF interval from time of request Includes SMF87RHS (Header), SMF87DEF (self defining section), SMF87REQ (n Requester sections), SMF87ENQ (n ENQ/DEQ sections) Requester section x corresponds to ENQ/DEQ section x... Page 9 of 27

10 Usage & Invocation Breakdown of an SMF 87 Subtype 2 record (Mapped by ISGYSMFR) SMF87RHS - Header section SMF87DEF - Self defining section SMF87REQ 1 thru n - Requester section contains items like the PSW, JOBNAME, ASID, TCB and time of request Some new fields added that are specific to ENQ/DEQ SMF87ENQ 1 thru n Data Section contains QNAME, RNAME, SCOPE, and other details about the request parameters See Appendix A for more details Page 10 of 27

11 Usage & Invocation GRSMONxx Syntax FILTER INCLUDE EXCLUDE QSCAN keywords QSCAN [ XSYS(YES NO ANY) ] [ GENERIC(YES NO ANY) ] FILTER INCLUDE EXCLUDE ENQ/DEQ keywords ENQ DEQ ENQDEQ QNAME( qnamepattern ) RNAME( rnamepattern ) [ JOBNAME( jobnamepattern ) ] [ SCOPE(STEP SYSTEM SYSTEMS ANY) ] [ AUTHQLVL(2 NONE) ] [ RESERVE(YES NO ANY) ] [ RNLMATCH(YES NO ANY) ] [ WAITER(YES NO ANY) ] Page 11 of 27

12 Usage & Invocation Two logical FILTER lists: Include list and Exclude list like RNLs Exclude list trumps Include list Pattern strings support wildcard characters * and? Both types of FILTER statements can coexist in same member Order does not matter Long Rname support to handle strings greater than one record length RNAME( 'on_your_marks...', 'get_ready...', 'get_set...', 'go!' ) Up to 255 characters excluding quotes and commas Avoid FILTER INCLUDE ENQ QNAME(*) RNAME(*) without other modifiers too much data! Page 12 of 27

13 Usage & Invocation Example: Trace all ENQs and DEQs with a scope of SYSTEMS and Qname of SYSDSN except those from MYJOB Also trace global generic queue scans FILTER INCLUDE ENQDEQ QNAME(SYSDSN) RNAME(*) SCOPE(SYSTEMS) FILTER EXCLUDE ENQDEQ QNAME(*) RNAME(*) JOBNAME(MYJOB) FILTER INCLUDE QSCAN GENERIC(YES) XSYS(YES) Page 13 of 27

14 Usage & Invocation Example: Trace all ENQs and DEQs resulting in a HW RESERVE FILTER INCLUDE ENQDEQ QNAME(*) RNAME(*) RESERVE(YES) Page 14 of 27

15 Usage & Invocation Example: Trace all ENQ requests which matched the RNLs and may have been affected But exclude SYSDSN ENQs FILTER INCLUDE ENQ QNAME(*) RNAME(*) RNLMATCH(YES) FILTER EXCLUDE ENQ QNAME(SYSDSN) RNAME(*) Page 15 of 27

16 Usage & Invocation SYS1.SAMPLIB(ISGMON00) contains more hints and examples Page 16 of 27

17 Interactions & Dependencies Software Dependencies SMF considerations Think about planning SMF resources for new data stream Unlike other SMF records, SMF 87 subtype 2's can be cut in much greater frequency Use a separate logstream for type 87s to avoid running out of space for other types You will likely need to create a program (REXX?) to aggregate the SMF 87 data or use an existing product Hardware Dependencies None Exploiters None Page 17 of 27

18 Migration & Coexistence Considerations None, as this is a single-system solution If you are already using APAR OA42221, the default behavior will be the same, except... SMF 87 Recording in V2R2 drives SMF exit IEFU84 (switch from IEFU85 with OA42221) The Requester section (SMF87REQ) grew in size but that is encapsulated by the self-defining section In V2R2, the Requester Section is version 2 If no GRSMONxx is active, filtering reverts to OA42221 logic Page 18 of 27

19 Presentation Summary GRS EQDQ Monitor Enhancements Tracing ENQs and DEQs via SMF 87 minimal impact to ENQ performance Filtering options in PARMLIB Page 19 of 27

20 Appendix A SMF 87 Subtype 1&2 fields Details: Header Section SMFRCD87 DSECT SMF87RHS DS 0CL24 Record Header Section SMF87LEN DS H Record Length SMF87SEG DS H Segment Descriptor SMF87FLG DS 0CL1 Header Flag Byte SMF87FST EQU X'40' bit 1 - SUBTYPES utilized ORG SMF87FLG+1 SMF87RTY DS CL1 Record Type - 87 SMF87TME DS FL4 Record Written Time SMF87DTE DS CL4 Record Written Date SMF87SID DS CL4 System Identification SMF87SSI DS CL4 Subsystem ID SMF87STP DS H Record Subtype Page 20 of 27

21 Appendix A SMF 87 Subtype 1&2 fields Details: Self Defining Section SMF87DEF DS 0CL20 Self Defining section SMF87DEF_LEN DS F Length of this section SMF87DEF_REQ_OFF DS F Requester section offset SMF87DEF_REQ_LEN DS H Requester section length SMF87DEF_REQ_NUM DS H Number of Requester sections SMF87DEF_QSCAN_OFF DS 0F Qscan section offset SMF87DEF_DATA_OFF DS F Data section offset SMF87DEF_QSCAN_LEN DS 0H Qscan section length SMF87DEF_DATA_LEN DS H Data section length SMF87DEF_QSCAN_NUM DS 0H Number of Qscan sections SMF87DEF_DATA_NUM DS H # of Data sections SMFRCD87_LEN EQU *-SMFRCD87 Page 21 of 27

22 Appendix A SMF 87 Subtype 1&2 fields Details: Requester Section (Page 1) SMF87REQ DSECT SMF87REQ_COMP DS CL8 Requester Component ID SMF87REQ_VERSION DS F Requester section version SMF87REQ_SYS DS CL8 Requester System Name SMF87REQ_STOK DS CL8 Requester SToken SMF87REQ_ASID DS H Requester Asid DS CL2 reserved SMF87REQ_TCB DS A Requester TCB address SMF87REQ_JOB DS CL8 Requester Jobname SMF87REQ_STIME DS CL16 Requester start timestamp SMF87REQ_CTIME DS CL16 Requester completion timestamp SMF87REQ_RC DS F Requester return code SMF87REQ_RSN DS F Requester reason code SMF87REQ_PSW DS CL8 Requester PSW Page 22 of 27

23 Appendix A SMF 87 Subtype 1&2 fields Details: Requester Section (Page 2) SMF87REQ_FLAGS DS 0B Flags SMF87REQ_JOBINIT EQU X'80' Initiated Job. Only valid when SMF87STP is SMF87STP_ENQ SMF87REQ_STCTSU EQU X'40' Started Task. Only valid when SMF87STP is SMF87STP_ENQ ORG SMF87REQ_FLAGS+1 SMF87REQ_AUTH1 DS B copy of CDATTR2. Only valid when SMF87STP is SMF87STP_ENQ DS CL2 SMF87REQ_SMFID DS CL4 System id. Only valid when SMF87STP is SMF87STP_ENQ SMF87REQ_PROGRAMNAME DS CL8 Program Name. Only valid when SMF87STP is SMF87STP_ENQ SMF87REQ_LEN EQU *-SMF87REQ Page 23 of 27

24 Appendix A SMF 87 Subtype 2 fields Details: ENQ/DEQ Section (Page 1) MF87ENQ DSECT MF87ENQ_EYE DS CL8 service eye-catcher MF87ENQ_VERSION DS F enq section version MF87ENQ_REQUESTFIELDS DS 0CL8 MF87ENQ_FLAGS1 DS 0CL1 MF87ENQ_REQWAITED EQU X'80' When on, this request was queued to wait for the resource MF87ENQ_EXITCHANGED EQU X'40' When on, this request was changed by an exit MF87ENQ_INCLUDED EQU X'20' When on, this request was included by RNLs MF87ENQ_EXCLUDED EQU X'10' When on, this request was excluded by RNLs MF87ENQ_CONVERTED EQU X'08' When on, this request was converted by RNLs MF87ENQ_PCREQUEST EQU X'04' When on, this request was a result of a PC-ENQ, PC-DEQ, or ISGENQ MF87ENQ_RNLNO EQU X'02' When on, this request was made requesting no changes be allowed by RNLs MF87ENQ_LIST EQU X'01' When on, this request was part of a list request Page 24 of 27

25 Appendix A SMF 87 Subtype 2 fields Details: ENQ/DEQ Section (Page 2) SMF87ENQ_FLAGS2 DS 0CL1 SMF87ENQ_DIRECTEDTCB EQU X'80' When on, this request was directed to another TCB SMF87ENQ_STEPMUSTCOMPLETE EQU X'40' When on, this request asked for Step must complete SMF87ENQ_SHARE EQU X'20' When on, this request was for shared access SMF87ENQ_RESERVE EQU X'10' When on, this request was for a RESERVE SMF87ENQ_OBTAIN EQU X'08' When on, this request was to obtain or change an ENQ. When off, this request was to release an ENQ ORG SMF87ENQ_FLAGS2+1 SMF87ENQ_SCOPE DS X Final scope of the request SMF87ENQ_RNAMELEN DS X Rname length SMF87ENQ_REQUESTTYPE DS X Type of request DS CL3 SMF87ENQ_DEVICEINFO DS 0CL8 SMF87ENQ_DEVN DS BL2 Device number SMF87ENQ_UCBVOLI DS CL6 VolSer if UCB avail. SMF87ENQ_QNAME DS CL8 QNAME SMF87ENQ_RNAME DS CL256 Rname Page 25 of 27

26 Appendix A SMF 87 Subtype 1 fields (OA42221) Details: QSCAN Section (Page 1) SMF87QSCAN DSECT SMF87QSCAN_EYE DS CL8 Addressability derived from address of SMF87RCD + SMF87DEF_QSCAN_OFF + (SMF87DEF_QSCAN_LEN * (index-1)) Service eye-catcher. Refer to constants beginning with SMF87QSCAN_EYE. SMF87QSCAN_VERSION DS F Qscan section version SMF87QSCAN_SCANACTION DS X Requested scan action. Refer to constants beginning with SMF87QSCAN_SCANACTION SMF87QSCAN_FLAGS DS 0X SMF87QSCAN_QNAME_SPECIFIC EQU X'80' Specific Qname? SMF87QSCAN_RNAME_SPECIFIC EQU X'40' Specific Rname? ORG SMF87QSCAN_FLAGS+1 SMF87QSCAN_QNAMELEN DS X Qname length SMF87QSCAN_RNAMELEN DS X Rname length SMF87QSCAN_MINWAITERS DS F Minimum waiters SMF87QSCAN_QNAME DS CL8 Requested Qname. If not specified on request, then zeroes SMF87QSCAN_RNAME DS CL256 Requested Rname. If not specified on request, then zeroes. For length, refer to SMF87QSCAN_RNAMELEN SMF87QSCAN_LEN EQU *-SMF87QSCAN Page 26 of 27

27 Appendix A SMF 87 Subtype 1 fields (OA42221) Details: QSCAN Section (Page 2) Subtype 1 records contain the same header, self-defining section, and requester section as subtype 2 They are single request records Page 27 of 27

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: ENF 70 Events Element/Component: JES3 Material is current as of June 2013 Agenda Trademarks Presentation Objectives Overview Usage & Invocation Migration &

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Line item: Dynamic SYSDSN ENQ Downgrade Element/Component: BCP Allocation Material is current as of June 2013 Agenda Trademarks Presentation Objectives Overview Usage

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: Tamper Resistant SMF Element/Component: BCP SMF Material current as of May 2015 Agenda Trademarks Presentation Objectives Overview Usage & Invocation Interactions

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: GRS Usage Statistics in RMF Monitor III Element/Component: RMF Material current as of May 2015 Agenda Trademarks Presentation Objectives Overview Usage & Invocation

More information

The Basics of GRS: An overview of GRS ENQ processing

The Basics of GRS: An overview of GRS ENQ processing The Basics of GRS: An overview of GRS ENQ processing Speaker Name: Nick Matsakis Matsakis@us.ibm.com (presentation by GRS Development Team) Speaker Company: IBM Corporation Date of Presentation: August

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: TOD Accuracy Monitor Element/Component: BCP Timer Supervisor Material is current as of June 2013 Agenda Trademarks Presentation Objectives Overview Usage &

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Items: Functional Enhancements Exploitation of zhpf Element/Component: DFSORT Material current as of May 2015 Agenda Trademarks Presentation Objectives For each item:

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: SMF 30 Instruction Counts Element/Component: BCP SMF Material is current as of March 2013 Agenda Trademarks Presentation Objectives Overview Usage & Invocation

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: SDUMP CTRACE Element/Component: BCP/SDUMP Material current as of May 2015 Agenda Trademarks Presentation Objectives Overview Usage & Invocation Presentation

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: Pause Multiple Elements Element/Component: BCP Supervisor Material current as of May 2015 Agenda Trademarks Presentation Objectives Overview Usage & Invocation

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Line item: SMF persistent data & REXX GTZQUERY Element/Component: BCP Generic Tracker Material current as of May 2015 IBM Presentation Template Full Version Agenda

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: Health Based Routing Element/Component: WLM Material current as of May 2015 Agenda Trademarks Presentation Objectives Overview Usage & Invocation Migration

More information

IBM Education Assistance for z/os V2R1. Item: Log Stream Primary Storage Consumption Alert Messaging Element/Component: BCP System Logger

IBM Education Assistance for z/os V2R1. Item: Log Stream Primary Storage Consumption Alert Messaging Element/Component: BCP System Logger IBM Education Assistance for z/os V2R1 Item: Log Stream Primary Storage Consumption Alert Messaging Element/Component: BCP System Logger Material is current as of June 2013 Agenda Trademarks Presentation

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: Allow Groups of SPM Rules Element/Component: WLM/SRM Material is current as of March 2013 IBM Presentation Template Full Version Agenda Trademarks Presentation

More information

IBM Education Assistance for z/os V2R3

IBM Education Assistance for z/os V2R3 IBM Education Assistance for z/os V2R3 Toolkit REXX support & Toolkit Streaming Send/Receive Element/Component: z/os Client Web Enablement Toolkit 62 2017 IBM Corporation Agenda Trademarks Session Objectives

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: RAS Usability Element/Component: DFSMShsm Material is current as of June 2013 Agenda Trademarks Presentation Objectives Overview Usage & Invocation Presentation

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: Logger allocate ahead log stream advanced-current offload datasets Element/Component: BCP/Logger (System Logger) Material current as of May 2015 Agenda Trademarks

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: I/O Autoconfiguration (zdac) Stage 3 Element/Component: HCD Page 1 of 19 Agenda Trademarks Presentation Objectives Overview Usage & Invocation Interactions

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Items: JES2 Growth: Grow from 400K to 1M Active jobs JES2 Growth: Grow checkpoint without cold start JES2 Growth: Dynamic Checkpoint tuning Element/Component: JES2

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: J-con, RAS, Long section name and LP64 DLL Element/Component: Binder Material current as of May 2015 FP0207 J-con Page 2 of 25 Agenda Trademarks Presentation

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: Auto-Reply Support For DCCF Synch WTOR Notification Element/Component: Material is current as of June 2013 BCP/Consoles Agenda Trademarks Presentation Objectives

More information

Common z/os Problems You Can Avoid

Common z/os Problems You Can Avoid Session 16633 Common z/os Problems You Can Avoid Click to add text SHARE in Seattle March 5 th, 2015 Patty Little John Shebey IBM Poughkeepsie plittle@us.ibm.com jshebey@us.ibm.com 1 Trademarks The following

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: RSM Scalability Element/Component: Real Storage Manager Material current as of May 2015 IBM Presentation Template Full Version Agenda Trademarks Presentation

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: PFA Simplification, Usability, and Customer Requirements Element/Component: PFA Material current as of May 2015 Agenda Trademarks Presentation Objectives Overview

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: In-Stream Data in JCL Procedures and Includes Element/Component: JES3 Material is current as of June 2013 I n Agenda Trademarks Presentation Objectives Overview

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: RMF Monitor III PCIE Support Element/Component: RMF Material current as of May 2015 Agenda Presentation Objectives Overview Usage & Invocation: RMF Monitor

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: AMODE 64 support for 1M and 2G large pages Element/Component: Language Environment Material is current as of June 2013 Agenda Trademarks Presentation Objectives

More information

CA MII Data Sharing for z/os

CA MII Data Sharing for z/os CA MII Data Sharing for z/os CA MII Programming Guide Release 12.0 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: Sysrexx Enhancements Element/Component: MVS/System REXX Material current as of May 2015 Agenda Trademarks Presentation Objectives Overview Usage & Invocation

More information

Configuring and Using SMF Logstreams with zedc Compression

Configuring and Using SMF Logstreams with zedc Compression Glenn Anderson, IBM Lab Services and Training Configuring and Using SMF Logstreams with zedc Compression Summer SHARE August 2015 Session 17644 Overview: Current SMF Data Flow SMF Address Space Record

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: Contractible CPOOL Element/Component: BCP Virtual Storage Manager (VSM) Material current as of March 2015 Agenda Trademarks Presentation Objectives Overview

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: Dynamic Configuration for most Infoprint Server Options Replace aopd.conf with Printer Inventory Common Message Log to z/os System Logger z/os Font Collection

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: Launch PL/I Element/Component: BCP Batch Runtime Material is current as of June 2013 Agenda Trademarks Presentation Objectives Overview Usage & Invocation Interactions

More information

IBM z/os BCPii V2R3 Update: Even greater control of your IBM Z Hardware

IBM z/os BCPii V2R3 Update: Even greater control of your IBM Z Hardware IBM z/os BCPii V2R3 Update: Even greater control of your IBM Z Hardware Steve Warren z/os BCPii Technical Lead Email: swarren@us.ibm.com : @StevieWarr2 August 10, 2017 Agenda Quick overview of BCPii New

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: Debug Optimized Code Element/Component: z/os UNIX System Services DBX Material is current as of June 2013 Agenda Trademarks Presentation Objectives Overview

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: PFA Private Storage Exhaustion Check Element/Component: BCP/PFA Material current as of May 2015 Agenda Trademarks Presentation Objectives Overview Migration

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: Boundary Alignment Element/Component: Binder Material is current as of June 2013 Agenda Trademarks Presentation Objectives Overview Usage & Invocation Interactions

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: PARMDD Element/Component: BCP Scheduler Material is current as of June 2013 Agenda Trademarks Presentation Objectives Overview Usage & Invocation Interactions

More information

The Dynamics of z/os. Peter Relson. Corporation, Poughkeepsie, NY. z/os Core Technology Design. (845)

The Dynamics of z/os. Peter Relson. Corporation, Poughkeepsie, NY. z/os Core Technology Design. (845) The Dynamics of z/os Peter Relson z/os Core Technology Design Corporation, Poughkeepsie, NY (845)-435-8390 relson@us.ibm.com PJR Copyright IBM Corporation, 2004 1 Abstract This talk explores dynamic APF,

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: SDUMP Usertoken Support Element/Component: BCP Service Aids Material current as of May 2015 Agenda Trademarks Presentation Objectives Overview Usage & Invocation

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: CIM Standards Currency Element/Component: CIM Material is current as of June 2013 Agenda Presentation Objectives Overview Usage & Invocation Interactions &

More information

Collecting CPU MF (Counters) on z/os

Collecting CPU MF (Counters) on z/os Collecting CPU MF (Counters) on z/os The purpose of this document is to describe the steps necessary to enable CPU MF Counters. Background With the System z10, z196 and z114 there is a new hardware instrumentation

More information

MQ SMF Formatting How to Use and Analyse (or Analyze) the Data

MQ SMF Formatting How to Use and Analyse (or Analyze) the Data MQ SMF Formatting How to Use and Analyse (or Analyze) the Data Mark Taylor marke_taylor@uk.ibm.com IBM Hursley Lyn Elkins elkinsc@us.ibm.com IBM Washington Systems Center MQ Technical Conference v2.0.1.7

More information

Chicago Interface Group, Inc. FastLIST. Administrator Guide. Release 12.0

Chicago Interface Group, Inc. FastLIST. Administrator Guide. Release 12.0 Chicago Interface Group, Inc. FastLIST Administrator Guide Release 12.0 Chicago Interface Group, Inc. 858 West Armitage Avenue #286 Chicago, IL 60614 USA Phone: (773) 524-0998 Fax: (815) 550-6088 Email:

More information

IBM. IBM Health Checker for TFTP daemon. z/os Communications Server. Version 2 Release 2

IBM. IBM Health Checker for TFTP daemon. z/os Communications Server. Version 2 Release 2 z/os Communications Server IBM IBM Health Checker for TFTP daemon Version 2 Release 2 Note: Links to related publications are from original documents and might not work. The links to publications are included

More information

DB2 11 for z/os Application Compatibility What you Need to Know

DB2 11 for z/os Application Compatibility What you Need to Know DB2 11 for z/os Application Compatibility What you Need to Know Christopher J. Crone IBM Platform: DB2 for z/os Disclaimer 1 Information regarding potential future products is intended to outline our general

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: UNIX Search Authority Element/Component: RACF Material current as of May 2015 Agenda Trademarks Presentation Objectives Overview Usage & Invocation Migration

More information

Speaker: Thomas Reed /IBM Corporation SHARE Seattle 2015 Session: 16956

Speaker: Thomas Reed /IBM Corporation SHARE Seattle 2015 Session: 16956 PDSE Nuts and Bolts Speaker: Thomas Reed /IBM Corporation SHARE Seattle 2015 Session: 16956 Insert Custom Session QR if Desired. Permission is granted to SHARE Inc. to publish this presentation paper in

More information

DFSMS What's New with DFSMS ICF Catalog and IDCAMS

DFSMS What's New with DFSMS ICF Catalog and IDCAMS DFSMS What's New with DFSMS ICF Catalog and IDCAMS Stephen Branch IBM March 4, 2015 17104 Insert Custom Session QR if Desired. Permission is granted to SHARE Inc. to publish this presentation paper in

More information

Now Available in z/os V2R2 JES3: OUTDISP

Now Available in z/os V2R2 JES3: OUTDISP Now Available in z/os V2R2 JES3: OUTDISP David Jones IBM JES3 Development August 12, 2015 Session 17599 at 4:30 5:30 PM Trademarks The following are trademarks of the International Business Machines Corporation

More information

z/os Performance HOT Topics

z/os Performance HOT Topics z/os Performance HOT Topics Kathy Walsh IBM March 10, 2014 Session Number: 15266 Agenda Processor Information PR/SM Absolute Capping Instructions Counts Warning Track New PCIe Support - RoCE and zedc Performance

More information

The z/os GRS Resource Serialization Detective: Tools for Monitoring and Debugging Hands-on Lab

The z/os GRS Resource Serialization Detective: Tools for Monitoring and Debugging Hands-on Lab Washington Systems Center The z/os GRS Resource Serialization Detective: Tools for Monitoring and Debugging Hands-on Lab Session # 11634 Nat Stevenson III stevensn@us.ibm.com Copyright IBM Corporation

More information

Section I - Diagnosing Loops and Hangs

Section I - Diagnosing Loops and Hangs 1 2 3 4 Section I - Diagnosing Loops and Hangs There are many ways that an application or system can appear hung. Similarly, there are many factors which can cause or contribute to a hang. This presentation

More information

Common z/os Problems You Can Avoid (Final Version)

Common z/os Problems You Can Avoid (Final Version) Session 15594 Common z/os Problems You Can Avoid (Final Version) SHARE in Pittsburgh August 6 th, 2014 Patty Little Jerry Ng IBM Poughkeepsie plittle@us.ibm.com jerryng@us.ibm.com August 2014 Copyright

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Items: Activity Log Enhancements Compatibility Level Upgrade Without LDAP Outage Dynamic Group Performance Enhancements Replication of Password Policy Attributes

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: BSAM type=blocked Support Element/Component: Language Environment Material is current as of June 2013 Agenda Trademarks Presentation Objectives Overview Presentation

More information

Click to add text. Session Common z/os Problems You Can Avoid. SHARE in Orlando August 12 th, 2015

Click to add text. Session Common z/os Problems You Can Avoid. SHARE in Orlando August 12 th, 2015 Session 17423 Common z/os Problems You Can Avoid Click to add text SHARE in Orlando August 12 th, 2015 Patty Little John Shebey IBM Poughkeepsie plittle@us.ibm.com jshebey@us.ibm.com 1 Trademarks The following

More information

z/os 2.1 Unix Systems Services Latest Status and New Features Trish Nolan BMC Software, Inc.

z/os 2.1 Unix Systems Services Latest Status and New Features Trish Nolan BMC Software, Inc. z/os 2.1 Unix Systems Services Latest Status and New Features Trish Nolan BMC Software, Inc. Trish_Nolan@bmc.com Insert Custom Session QR if Desired. August 5, 2014 11:15 AM - 12:15 PM DLLCC, Room 406

More information

Coupling Facility Dumps IBM. This document can be found on the web, Under the category of White Papers.

Coupling Facility Dumps IBM. This document can be found on the web,  Under the category of White Papers. s IBM This document can be found on the web, www.ibm.com/support/techdocs Under the category of White Papers. August 2012-08-24 Anna Clayton Nicole M. Fagen Daniel Rinck http://www.ibm.com/support/techdocs

More information

CA ACF CA RS 1605 Service List

CA ACF CA RS 1605 Service List CA ACF2 16.0 1 CA RS 1605 Service List Description Type 16.0 RO86948 MESSAGE ACF79410 MISSING IN R16 PTF RO87169 ACF2/IMS SUPPORT FOR IMS R14 PTF RO87944 WRONG ERROR MSG ON P11TOKEN WHEN ICSF IS DOWN PTF

More information

Scheduling with the Agent for z/os

Scheduling with the Agent for z/os Workload Scheduler Version 8.6 Scheduling with the Agent for z/os SC27-2771-00 Note Before using this information and the product it supports, read the information in Notices. This edition applies to version

More information

IBM Education Assistance for z/os V2R2

IBM Education Assistance for z/os V2R2 IBM Education Assistance for z/os V2R2 Item: RRSF Dynamic MAIN Switching Element/Component: RACF/RRSF Material current as of May 2015 Agenda Trademarks Presentation Objectives Overview Usage & Invocation

More information

Focus on zedc SHARE 123, Pittsburgh

Focus on zedc SHARE 123, Pittsburgh IBM Systems & Technology Group Focus on zedc SHARE 123, Pittsburgh John Eells IBM Poughkeepsie eells@us.ibm.com 4 August 2014 Many thanks to Anthony Sofia for the updates! 1 2012, 2014 IBM Corporation

More information

Evolution of CPU and ziip usage inside the DB2 system address spaces

Evolution of CPU and ziip usage inside the DB2 system address spaces Evolution of CPU and ziip usage inside the DB2 system address spaces Danilo Gipponi Fabio Massimo Ottaviani EPV Technologies danilo.gipponi@epvtech.com fabio.ottaviani@epvtech.com www.epvtech.com Disclaimer,

More information

System z13: First Experiences and Capacity Planning Considerations

System z13: First Experiences and Capacity Planning Considerations System z13: First Experiences and Capacity Planning Considerations Robert Vaupel IBM R&D, Germany Many Thanks to: Martin Recktenwald, Matthias Bangert and Alain Maneville for information to this presentation

More information

Db2 Query Management Facility Version 12 Release 2. Installing and Managing Db2 QMF for TSO and CICS IBM GC

Db2 Query Management Facility Version 12 Release 2. Installing and Managing Db2 QMF for TSO and CICS IBM GC Db2 Query Management Facility Version 12 Release 2 Installing and Managing Db2 QMF for TSO and CICS IBM GC27-8877-02 Db2 Query Management Facility Version 12 Release 2 Installing and Managing Db2 QMF

More information

HOLDDATA FOR IMS 8.1 PUT Level ** Please read all of the HOLDDATA before acting on any of it. **

HOLDDATA FOR IMS 8.1 PUT Level ** Please read all of the HOLDDATA before acting on any of it. ** HOLDDATA FOR IMS 8.1 PUT Level 0510 ** Please read all of the HOLDDATA before acting on any of it. ** ************************************************************************ Please pay close attention

More information

z/os Operating System Vulnerabilities ( )

z/os Operating System Vulnerabilities ( ) ARTICLE z/os Operating System Vulnerabilities (2013-2017) Cynthia Overby March 2, 2018 z/os Operating System Vulnerabilities (2013-2017) 01 Mainframe Integrity Vulnerabilities Key Resources, Inc. (KRI)

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: Customer Requirements and PMR Reduction Element/Component: HCD/HCM Material is current as of June 2013 Agenda Presentation Objectives Overview Usage & Invocation

More information

ISPF New Features and Hidden Treasures

ISPF New Features and Hidden Treasures ISPF New Features and Hidden Treasures Part 1 and Part 2 Kim Bailey (ktekavec@us.ibm.com) IBM, Enterprise Networking Solutions Design August 6, 2014 www.share.org Session 15569 Session 15570 Insert Custom

More information

IBM. MVS Installation Exits. z/os. Version 2 Release 3 SA

IBM. MVS Installation Exits. z/os. Version 2 Release 3 SA z/os IBM MVS Installation Exits Version 2 Release 3 SA23-1381-30 Note Before using this information and the product it supports, read the information in Notices on page 415. This edition applies to Version

More information

CA SYSVIEW Performance Management Scenarios, How to Articles, Videos, and Online Help Topics

CA SYSVIEW Performance Management Scenarios, How to Articles, Videos, and Online Help Topics CA SYSVIEW Performance Management - 14.1 Scenarios, How to Articles, Videos, and Online Help Topics Date: 10-Oct-2016 This Documentation, which includes embedded help systems and electronically distributed

More information

IBM. MVS Programming: Extended Addressability Guide. z/os. Version 2 Release 3 SA

IBM. MVS Programming: Extended Addressability Guide. z/os. Version 2 Release 3 SA z/os IBM MVS Programming: Extended Addressability Guide Version 2 Release 3 SA23-1394-30 Note Before using this information and the product it supports, read the information in Notices on page 263 This

More information

Collecting CPU MF (Counters) on z/os

Collecting CPU MF (Counters) on z/os Collecting CPU MF (Counters) on z/os The purpose of this document is to describe the steps necessary to enable CPU MF Counters. Background With the System z10 and later processors there is a new hardware

More information

IBM. Scheduling with the Agent for z/os. IBM Workload Scheduler. Version 9 Release 4

IBM. Scheduling with the Agent for z/os. IBM Workload Scheduler. Version 9 Release 4 IBM Workload Scheduler IBM Scheduling with the Agent for z/os Version 9 Release 4 IBM Workload Scheduler IBM Scheduling with the Agent for z/os Version 9 Release 4 Note Before using this information and

More information

IBM Tivoli Decision Support for z/os Version Messages and Problem Determination IBM SH

IBM Tivoli Decision Support for z/os Version Messages and Problem Determination IBM SH IBM Tivoli Decision Support for z/os Version 1.8.2 Messages and Problem Determination IBM SH19-6902-15 IBM Tivoli Decision Support for z/os Version 1.8.2 Messages and Problem Determination IBM SH19-6902-15

More information

z/os Performance HOT Topics

z/os Performance HOT Topics z/os Performance HOT Topics Kathy Walsh IBM Monday, August 12, 2013 Session Number: 14022 IBM ATS - Washington Systems Center Trademarks The following are trademarks of the International Business Machines

More information

Writing User Exits in the C Language

Writing User Exits in the C Language Writing User Exits in the C Language Mike McNamee mikem@e3sciences.com Copyright e3 Sciences Ltd 2000 Agenda The history of Exits Times are changing Changes to the C Compiler So where do I start The history

More information

Scheduling with the agent for z/os

Scheduling with the agent for z/os IBM Tivoli Workload Scheduler Scheduling with the agent for z/os Version 9 Release 1 SC27-2771-02 IBM Tivoli Workload Scheduler Scheduling with the agent for z/os Version 9 Release 1 SC27-2771-02 Note

More information

The Web Version of this chapter is split into 4 pages - this is page 3 - page contents are as follows:

The Web Version of this chapter is split into 4 pages - this is page 3 - page contents are as follows: 1 of 8 11/2/2001 1:48 PM MVS Systems Programming Home Chapter 3c - MVS Internals Contents The Web Version of this chapter is split into 4 pages - this is page 3 - page contents are as follows: Section

More information

WebSphere Application Server Version 8 New z/os Exploitation/Differentiation

WebSphere Application Server Version 8 New z/os Exploitation/Differentiation WebSphere Server Version 8 New z/os Exploitation/Differentiation David Follis IBM August 11, 2011 Session Number 9485 WebSphere Server Sessions Day Time # Title Speaker Room Wednesday 3:00 9483 Using IBM's

More information

Session 8861: What s new in z/os Performance Share 116 Anaheim, CA 02/28/2011

Session 8861: What s new in z/os Performance Share 116 Anaheim, CA 02/28/2011 Marianne Hammer IBM Corporation Poughkeepsie, New York hammerm@us.ibm.com Session 8861: What s new in z/os Performance Share 116 Anaheim, CA 02/28/2011 Trademarks IBM Corporation 2009 IBM, the IBM logo

More information

CPU MF Counters Enablement Webinar

CPU MF Counters Enablement Webinar Advanced Technical Skills (ATS) North America CPU MF Counters Enablement Webinar John Burg Kathy Walsh May 2, 2012 1 Announcing CPU MF Enablement Education Two Part Series Part 1 General Education Today

More information

z/architecture Overview and z/vm 64-bit Support Internals

z/architecture Overview and z/vm 64-bit Support Internals z/architecture Overview and z/vm 64-bit Support Internals Damian Osisek IBM z/vm Development dlosisek@us.ibm.com BayBunch May 30, 2003 Trademarks The following are trademarks of the International Business

More information

Tuning z/os for WebSphere (A View from 100,000 Feet)

Tuning z/os for WebSphere (A View from 100,000 Feet) Tuning z/os for WebSphere 4.0.1 (A View from 100,000 Feet) Clark L. Kidd Watson & Walker, Inc. Session 2928; SHARE 101 in Washington, D.C. August 12, 2003 Agenda for This Presentation Overview z/os Base

More information

Simple BCPii Programming for the z/os System Programmer Steve Warren, IBM Corporation

Simple BCPii Programming for the z/os System Programmer Steve Warren, IBM Corporation Session 09865 Simple BCPii Programming for the z/os System Programmer Steve Warren, IBM Corporation Agenda BCPii quick overview BCPii installation overview Quick BCPii z/os 1.13 Update BCPii Programming

More information

z/os Availability: Blocked Workload Support

z/os Availability: Blocked Workload Support z/os Availability: Blocked Workload Support This document highlights new function delivered in z/os (R) V1.9 and rolled back to z/os 1.7 and z/os 1.8 via APAR OA17735. This support was inspired by experiences

More information

ZVM20: z/vm PAV and HyperPAV Support

ZVM20: z/vm PAV and HyperPAV Support May 21-25 ZVM20: z/vm PAV and HyperPAV Support Eric Farman, IBM Trademarks The following are trademarks of the International Business Machines Corporation in the United States, other countries, or both.

More information

Key Metrics for DB2 for z/os Subsystem and Application Performance Monitoring (Part 1)

Key Metrics for DB2 for z/os Subsystem and Application Performance Monitoring (Part 1) Key Metrics for DB2 for z/os Subsystem and Application Performance Monitoring (Part 1) Robert Catterall IBM March 12, 2014 Session 14610 Insert Custom Session QR if Desired. The genesis of this presentation

More information

What it does not show is how to write the program to retrieve this data.

What it does not show is how to write the program to retrieve this data. Session: A16 IFI DATA: IFI you don t know, ask! Jeff Gross CA, Inc. 16 October 2008 11:45 12:45 Platform: DB2 for z/os Abstract The Instrumentation Facility Interface (IFI) can be a daunting resource in

More information

Version 9 Release 1. IBM InfoSphere Guardium S-TAP for IMS on z/os V9.1 User's Guide IBM

Version 9 Release 1. IBM InfoSphere Guardium S-TAP for IMS on z/os V9.1 User's Guide IBM Version 9 Release 1 IBM InfoSphere Guardium S-TAP for IMS on z/os V9.1 User's Guide IBM ii IBM InfoSphere Guardium S-TAP for IMS on z/os V9.1 User's Guide Contents Chapter 1. What does IBM InfoSphere Guardium

More information

Old and new tracking facility - from Console Tracker to Generic Tracker

Old and new tracking facility - from Console Tracker to Generic Tracker Old and new tracking facility - from Console Tracker to Generic Tracker Peter Relson Ulrich Thiemann IBM August 13 th, 2013 Session 14235 Trademarks See url http://www.ibm.com/legal/copytrade.shtml for

More information

IBM. Cryptographic Services Integrated Cryptographic Service Facility System Programmer's Guide. z/os. Version 2 Release 3 SC

IBM. Cryptographic Services Integrated Cryptographic Service Facility System Programmer's Guide. z/os. Version 2 Release 3 SC z/os IBM Cryptographic Services Integrated Cryptographic Service Facility System Programmer's Guide Version 2 Release 3 SC14-7507-06 Note Before using this information and the product it supports, read

More information

Measuring the WebSphere Message Broker - Part 2

Measuring the WebSphere Message Broker - Part 2 Measuring the WebSphere Message Broker - Part 2 Fabio Massimo Ottaviani EPV Technologies November 2011 5 Measuring WMB from inside Measuring WMB from inside is possible thanks to the availability of the

More information

IBM. JES2 Delivery Services. z/os. Version 2 Release 3

IBM. JES2  Delivery Services. z/os. Version 2 Release 3 z/os IBM JES2 Email Delivery Services Version 2 Release 3 Note Before using this information and the product it supports, read the information in Notices on page 31. This edition applies to Version 2 Release

More information

IBM. MVS Programming: Writing Servers for APPC/MVS. z/os. Version 2 Release 3 SA

IBM. MVS Programming: Writing Servers for APPC/MVS. z/os. Version 2 Release 3 SA z/os IBM MVS Programming: Writing Servers for APPC/MVS Version 2 Release 3 SA23-1396-30 Note Before using this information and the product it supports, read the information in Notices on page 125. This

More information

IBM. Program Directory for. IBM z Systems Development and Test Environment Tools. V Program Number 5725-G39 FMID HALMB00.

IBM. Program Directory for. IBM z Systems Development and Test Environment Tools. V Program Number 5725-G39 FMID HALMB00. IBM Program Directory for V11.0.0 Program Number 5725-G39 FMID HALMB00 For use with z/os v2.1 or higher Document date: August 2017 Note Before using this information and the product it supports, be sure

More information

IBM. MVS Planning: Operations. z/os. Version 2 Release 3 SA

IBM. MVS Planning: Operations. z/os. Version 2 Release 3 SA z/os IBM MVS Planning: Operations Version 2 Release 3 SA23-1390-30 Note Before using this information and the product it supports, read the information in Notices on page 231. This edition applies to Version

More information

Program Directory for IBM z Systems Development and Test Environment Tools

Program Directory for IBM z Systems Development and Test Environment Tools Program Directory for IBM z Systems Development and Test Environment Tools V11.0.2 Program Number 5725-G39 FMID HALMB02 For use with z/os v2.1 or higher Document date: December 2017 Notes: 1 IBM z Systems

More information

IBM. MVS Interactive Problem Control System (IPCS) Customization. z/os. Version 2 Release 3 SA

IBM. MVS Interactive Problem Control System (IPCS) Customization. z/os. Version 2 Release 3 SA z/os IBM MVS Interactive Problem Control System (IPCS) Customization Version 2 Release 3 SA23-1383-30 Note Before using this information and the product it supports, read the information in Notices on

More information