CA IDMS TM /DB Indexing Part 1

Size: px
Start display at page:

Download "CA IDMS TM /DB Indexing Part 1"

Transcription

1 International Toll Free Audio Numbers International Toll Free Audio Numbers Participant Dial-In Number(s): US Dial-In #: Int'l/Canada Dial-In #: Conference Audio Conference ID Alternate 800 service by country CA IDMS TM /DB Indexing Part 1 Internals Bill Abbott Dick Weiland February 14, 2008 Legal This presentation was based on current information and resource allocations as of February 14, 2008 and is subject to change or withdrawal by CA at any time without notice. Notwithstanding anything in this presentation to the contrary, this presentation shall not serve to (i) affect the rights and/or obligations of CA or its licensees under any existing or future written license agreement or services agreement relating to any CA software product; or (ii) amend any product documentation or specifications for any CA software product. The development, release and timing of any features or functionality described in this presentation remain at CA s sole discretion. Notwithstanding anything in this presentation to the contrary, upon the general availability of any future CA product release referenced in this presentation, CA will make such release available (i) for sale to new licensees of such product; and (ii) to existing licensees of such product on a when and if-available basis as part of CA maintenance and support, and in the form of a regularly scheduled major product release. Such releases may be made available to current licensees of such product who are current subscribers to CA maintenance and support on a when and if-available basis. In the event of a conflict between the terms of this paragraph and any other information contained in this presentation, the terms of this paragraph shall govern. 3 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals 1 February 2008 CA IDMS/DB Indexing Part 1 of 2; Internals Copyright 2008 CA

2 Poll: Please Identify Your Job Function > [Live Meeting Multiple Choice Poll. Use Live Meeting > Edit Slide Properties... to edit.] > Database Administrator > Application Developer >IT Manager >Consultant >Vendor >Other Abstract This session is an overview of the components of an CA IDMS index and how they are used. Topics covered are the processes of splitting, spawning, orphan handling, space usage, and internal usage of index structures. 5 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Topics of Discussion > Index Structure >Record Insertion > Index Navigation 6 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals 2 February 2008 CA IDMS/DB Indexing Part 1 of 2; Internals Copyright 2008 CA

3 Index Structure > An integrated index is a pointer array managed by the DBMS and composed of internal record types transparent to the application > All set orders supported by chain sets are available through indexes along with additional capabilities Unsorted (FIRST, LAST, NEXT, PRIOR) Sorted By dbkey By symbolic key Duplicates FIRST/LAST/DBKEY 7 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Index Structure (cont.) > All indexes are composed of the following components Index owners SR7 (system-owned indexes) User records (user-owned indexes) Index structure SR8 Member records 8 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals SR7 > SR7 records are stored as calc records using the index name as the calckey > User records are stored based on the location mode assigned to them within their schema *********************************************************** * * * SR7 ( OF SYSTEM- INDEX) * * * *********************************************************** OFFSET SR7 DSECT SR7RID EQU 7 RECORD ID OF SR7 S SR7CALCN DS F -10 NEXT IN CALC SET SR7CALCP DS F -C PRIOR IN CALC SET SR7DBKN DS F -8 NEXT IN SR7 SR C SR7DBKP DS F -4 PRIOR IN SR7 SR SR7PFXLN EQU *-SR7 PREFIX LENGTH SR7SET DS CL16 +0 SET NAME (CALC KEY) SR7DSLEN EQU *-SR7 LENGTH OF DSECT 9 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals 3 February 2008 CA IDMS/DB Indexing Part 1 of 2; Internals Copyright 2008 CA

4 SR8 > The major component of an index is the SR8 record which is basically an array of dbkeys and, optionally, symbolic keys > Each SR8 has a fixed portion > Each SR8 also contains a variable portion whose format is dependent on the characteristics of the index IBC Index Order 10 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals SR8 Fixed Portion ******************************************************************* SR8 (B-TREE NODE) * * ******************************************************************* OFFSET SR8 DSECT SR8RID EQU 8 RECORD ID OF SR8 S SR8NDBK DS -C NEXT IN SR SR8PDBK DS -8 PRIOR IN SR SR8ODBK DS F -4 INDEX,SR7 OR USER 0000C SR8PFXLN EQU *-SR8 LENGTH OF PREFIX 00000C SR8UPDBK DS F +0 APPROX DBKEY OF UPLEVEL * (-1 if TOP LEVEL) SR8ORPH DS F NUMBER of ORPHANED ENTRIES SR8NUME DS CURRENT NUMBER OF ENTRIES SR8CUSH DS CUSHSION SIZE, BYTES SR8ELEN DS LENGTH OF ONE INDEX ENTRY 00001A SR8TKL DS H TOTAL KEY LENGTH -1 SR8SORT #FLAG X 80 SORTED INDEX SR8SYMB #FLAG X 40 SORTED ON SYMBOLIC KEY SR8COMP #FLAG X 20 COMPRESSED KEYS SR8DSC #FLAG X 10 DESCENDING SEQUENCE SR8DDBK #FLAG X 08 DUPLICATES ORDERED BY DBKEY 00001C SR8FLAGS DS XL1 FLAG BYTE 00001D SR8LEVL DS XL1 LEVEL NUMBER SR8BOTM EQU 0 ZERO IS BOTTOM LEVEL 00001E DS H RESERVED SR8VAR DS 0F START of VARIABLE PORTION SR8DSLEN EQU *-SR8 FIXED LENGTH INCLUDING * PREFIX 11 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals SR8 Variable Portion *FOR UNSORTED INDEX SETS, THE VARIABLE PORTION CONSISTS OF 0 THRU SR8NUME MEMBER DATABASE KEYS * OFFSET SR8UNSRT DSECT SR8VAR FOR UNSORTED SETS SR8UNDBK DS F DBKEY OF MEMBER RECORD SR8UNLEN EQU *-SR8UNSRT LENGTH OF ENTRY (SR8ELEN) *IF THE INDEX IS SORTED ON MEMBER DBKEY, THE TOP AND * INTERMEDIATE LEVEL SR8 NODE POINTERS ARE PAIRED WITH * THE MEMBER DBKEYS. THE BOTTOM-LEVEL SR8S CONTAIN * ONLY MEMBER DBKEYS. * SR8SDBK DSECT TOP/INTERMEDIATE LEVEL NODE SR8SDNOD DS F DBKEY OF NEXT LOWER NODE SR8SMEM DS F DBKEY OF MEMBER RECORD SR8SDLEN EQU *-SR8DBK LENGTH OF ENTRY (SR8ELEN) 12 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals 4 February 2008 CA IDMS/DB Indexing Part 1 of 2; Internals Copyright 2008 CA

5 SR8 Variable Portion (cont.) *IF THE INDEX SET IS SORTED ON SYMBOLIC KEY, EACH ENTRY IN TOP AND INTERMEDIATE LEVEL SR8S CONTAINS A NODE POINTER PAIRED WITH THE OFFSET IN THE SR8 OF THE SYMBOLIC KEY. FOR BOTTOM LEVEL SR8S, THE MEMBER * DBKEY REPLACES THE NODE POINTER. OFFSET SR8SKEY DSECT ENTRY FOR SORTED ON SYMBOLIC * KEY SR8SKNOD DS 0XL4 DBKEY OF LOWER NODE (TOP/INT * LEVEL) SR8SKMEM DS XL4 DBKEY OF MEMBER(BOTTOM LEVEL) SR8SKKOF DS H OFFSET TO SYMBOLIC KEY SR8SKLEN EQU *-SR8SKEY LENGTH OF ENTRY (SR8ELEN) *FOR SYMBOLIC KEYED INDEXES WITH DUPLICATES ORDERED BY DBKEY, TOP AND INTERMEDIATE LEVELS ALSO CONTAIN THE DBKEYOF THE CORRESPONDING MEMBER, WHICH LOGICALLY REPRESENTS THE LO-ORDER PORTION OF THE SYMBOLIC * KEY SR8SKMKY XL4 DBKEY OF MEMBER (TOP/INT * LEVELS) 0000A SR8SKDLN EQU *-SR8SKEY SR8ELEN IF DUPS BY DBKEY * *EACH SYMBOLIC KEY IS OF THE FOLLOWING FORMAT * SR8SYMBK DSECT SYMBOLIC KEY ENTRY SR8SYCOM DS XL1 KEY PREFIX COMMON TO PRIOR * KEY SR8SYLEN DS XL1 LENGTH-1 OF FOLLOWING KEY SR8SYKEY DS 0XL256 ACTUAL KEY, 1->256BYTES SR8SYMLN EQU *-SR8SYMBK LENGTH WITHOUT SYMBOLIC KEY 13 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals SR8 Record Types > Level-0 (low-level) Dbkey/symbolic key values represent actual user record occurrences Stored based on the index s displacement clause Space allocated per SR8 is only enough to contain the number of active entries and the cushion >Intermediate Dbkey/symbolic key values represent lower level SR8 occurrences Stored VIA the set owner Space allocated per SR8 is enough to contain the number of entries specified by the IBC clause plus the cushion 14 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Member Records > Each member record occurrence contains an optional INDEX (UP) pointer to a level-0 SR8 record in the index > If the indexed set has a user-defined owner, the member occurrence can include an pointer that points directly to the owner occurrence 15 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals 5 February 2008 CA IDMS/DB Indexing Part 1 of 2; Internals Copyright 2008 CA

6 Sample Index Structure SR8 DB-KEY POINTERS ACCESS VIA SR8 PREFIX SR8 B SR8 C NESLON STUART SR8 D SR8 E SR8 F SR8 G SR8 H SR8 I ADAMS 1 ADAMS 1 DAVIS EAST GREY HALL JONES LONG NESLON STUART UPTON ADAMS DAVIS GREY JONES NELSON STUART UPTON ADAMS EAST HALL LONG 16 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Record Insertion > Records are added into an index by inserting a new entry into a level-0 SR8 record > When an SR8 record exceeds the maximum number of entries as defined by the index s IBC count or there is no more room to expand an SR8, a SPLIT occurs > The top level of a sorted index can contain only one SR8 record > When the top level SR8 record is full, the DBMS must split the SR8 and SPAWNS a new top level. > The new top level points to the two lower level SR8 records created by the split 17 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Record Insertion (cont.) > When a record is to be added into an SR8 and the new key s position would be at the beginning or the end of an SR8, the only record entry placed into the new SR8 record is for the member record being inserted IBC=3 Add record 18 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals 6 February 2008 CA IDMS/DB Indexing Part 1 of 2; Internals Copyright 2008 CA

7 Record Insertion (cont.) SPLIT SPAWN LEVEL 1 SR8 C SR8 B LEVEL 0 SR8 B 19 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Record Insertion (cont.) > When a record is to be inserted into the middle of an SR8 record and the SR8 is already at the maximum number of entries, the new entry is inserted by using the SR8 record s cushion. The SR8 is then split and half of the SR8 record s entries are moved to the new SR8 occurrence. 20 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Record Insertion (cont.) IBC=3 SR8 B Add record SPLIT 21 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals 7 February 2008 CA IDMS/DB Indexing Part 1 of 2; Internals Copyright 2008 CA

8 Record Insertion (cont.) SPAWN LEVEL 1 SR8 C SR8 B LEVEL 0 22 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Orphans > Orphans are created when an SR8 record in a LINKED index splits and member record entries are moved from the original SR8 occurrence to the new SR8 record The index pointers in the records whose entries were relocated remains pointing at the original SR8 The orphan count in the original SR8 is incremented by the number of entries that were relocated Orphans may be adopted when the index is subsequently navigated in an update mode 23 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Orphan Example IBC=3 0 Add record 24 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals 8 February 2008 CA IDMS/DB Indexing Part 1 of 2; Internals Copyright 2008 CA

9 Orphan Example (cont.) IBC=3 SR8 C 0 SPAWN LEVEL 1 1 SR8 B 0 LEVEL 0 25 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Index Navigation Index currencies are maintained within the set s variable OR52 control block (VOR) > The VOR is located by adding the displacement found at location x 04 of the set s OR52 to the VARSS base address found at location x 38 of the VB50 (VIB) > The dbkeys of the index s owner, prior, current, and next SR8 records are found in fields VORODBK, VORPDBK, VORCDBK, and VORNDBK respectively > The dbkeys of the prior, current, and next member records for the index are found in fields VORIXPRI, VORIXCUR, and VORIXNXT respectively 26 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Index Navigation (cont.) * VOR: VARIABLE OR52 SUBSCHEMA TABLE ELEMENT DSECT OFFSET VOR DSECT VORODBK DS DBKEY OF SET VORPDBK DS PRIOR DBKEY OF SET VORCDBK DS CURRENT DBKEY OF SET 00000C VORNDBK DS F NEXT DBKEY OF SET VORCDEF DS CURRENT OR/MR DEF OF SET VORMRD1 DS LAST MR53 REFERENCED OF SET VORMRD2 DS A 2ND LAST MR53 REF. OF SET 00001C VORMID1 DS LAST MEMBER RECID REFERENCED 00001E VORMID2 DS H 2ND LAST MEMBER RECID REF VORVIBN DS A NEXT OF VIB OR REF LIST VORFLAG1 DS XL1 GENERAL FLAG BYTE VORVKEY EQU X 80 SYMBOLIC KEY IS VALID VORUNUS1 DS XL1 RESERVED VORIXICS DS XL1 INDEX INTEGRITY CHECK SWITCH VORTICK DS XL1 DELETE RETURN INDICATOR VORIXPRI DS PRIOR OF INDEX 00002C VORIXCUR DS CURRENT OF INDEX VORIXNXT DS F NEXT OF INDEX VORIXPOF DS OFFSET OF PRIOR IN SR VORIXCOF DS OFFSET OF CURRENT IN SR VORIXNOF DS OFFSET OF NEXT IN SR A VORIPOFF DS H PRE-FIXED INSERT OFFSET 00003C VORIPDBK DS PRE-FIXED INSERT SR8 DBKEY VORSPDBK DS F CHAIN SET PRIOR DBK MODLINK VORCSBN DS NEXT OF VOR CSB CURRENCY VORCLKGA DS A ADDR OF LKG FOR CURRENT OF SET 00004C VOREND DS 0F END OF DSECT 00004C VORDSLEN EQU *-VOR LENGTH OF DSECT 27 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals 9 February 2008 CA IDMS/DB Indexing Part 1 of 2; Internals Copyright 2008 CA

10 Index Navigation (cont.) > FIND/OBTAIN/RETURN verbs that supply a symbolic key will search the index from top to bottom using a binary search > All the other retrieval commands will use set currencies or member index pointers to initiate searches at a level-0 SR8 record and will search for a specific dbkey 28 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Index Navigation (cont.) SR8 DB-KEY POINTERS ACCESS VIA SR8 PREFIX SR8 B SR8 C NESLON STUART SR8 D SR8 E SR8 F SR8 G SR8 H SR8 I ADAMS 1 ADAMS 1 DAVIS EAST GREY HALL JONES LONG NESLON STUART UPTON ADAMS DAVIS GREY JONES NELSON STUART UPTON ADAMS EAST HALL LONG 29 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Session Summary > Index Structure >Record Insertion > Index Navigation 30 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals 10 February 2008 CA IDMS/DB Indexing Part 1 of 2; Internals Copyright 2008 CA

11 Poll: How Useful Was This Presentation > [Live Meeting Multiple Choice Poll. Use Live Meeting > Edit Slide Properties... to edit.] >Extremely Useful > Very Useful >Mildly Useful > Of no Value For More Information > CA IDMS /DB Indexing, Part 2 of 2: Maintaining Indexes webcast February 21, AM ET Register at ca.com/events > ca.com/support CA IDMS home page CA IDMS recorded webcasts, roadmap, tech documents, > ca.com/idms > ca.com/caworld 32 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals Legal Certain information in this presentation may outline CA s general product direction. All information in this presentation is for your informational purposes only and may not be incorporated into any contract. CA assumes no responsibility for the accuracy or completeness of the information. To the extent permitted by applicable law, CA provides this document as is without warranty of any kind, including without limitation, any implied warranties or merchantability, fitness for a particular purpose, or non-infringement. In no event will CA be liable for any loss or damage, direct or indirect, from the use of this document, including, without limitation, lost profits, lost investment, business interruption, goodwill, or lost data, even if CA is expressly advised of the possibility of such damages. 33 February 2008 CA IDMS/DB Indexing, Part 1 of 2; Internals 11 February 2008 CA IDMS/DB Indexing Part 1 of 2; Internals Copyright 2008 CA

12 Q and A Register for Part 2, February 21, 2008 at ca.com/events CA IDMS Index Internals 12 February 2008 CA IDMS/DB Indexing Part 1 of 2; Internals Copyright 2008 CA

Improve Service Quality: CA Insight DPM Integration with CA Spectrum Service Assurance. Walter Guerrero, Sr Software Engineer

Improve Service Quality: CA Insight DPM Integration with CA Spectrum Service Assurance. Walter Guerrero, Sr Software Engineer Improve Service Quality: CA Insight DPM Integration with CA Spectrum Service Assurance Walter Guerrero, Sr Software Engineer Terms of This Presentation This presentation was based on current information

More information

Installing ISV Mainframe Products through a Web Browser with CA MSM: Update and User Experiences

Installing ISV Mainframe Products through a Web Browser with CA MSM: Update and User Experiences Installing ISV Mainframe Products through a Web Browser with CA MSM: Update and User Experiences August 8, 2012 - SHARE Session 11840 Mark Zelden (CSC), Mary Anne Matyaz (Base Technologies, Inc.), and

More information

2A The CA Plex.NET Client Generator. Rob Layzell CA Technologies

2A The CA Plex.NET Client Generator. Rob Layzell CA Technologies 2A The CA Plex.NET Client Generator Rob Layzell CA Technologies Legal This presentation was based on current information and resource allocations as of April 18, 2011 and is subject to change or withdrawal

More information

Under the Hood: Using IT Client Manager Enhanced Network Connectivity for Real World Management. Nigel Groves

Under the Hood: Using IT Client Manager Enhanced Network Connectivity for Real World Management. Nigel Groves Under the Hood: Using IT Client Manager Enhanced Network Connectivity for Real World Management Nigel Groves Terms of This Presentation This presentation was based on current information and resource allocations

More information

CA NSM and CA SPECTRUM Integration Demo. Roger Craig

CA NSM and CA SPECTRUM Integration Demo. Roger Craig CA NSM and CA SPECTRUM Integration Demo Roger Craig Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change or

More information

CA IDMS 18.0 & 18.5 for z/os and ziip

CA IDMS 18.0 & 18.5 for z/os and ziip FREQUENTLY ASKED QUESTIONS CA IDMS 18.0 & 18.5 for z/os and ziip Important October 2013 update ziip (IBM System z Integrated Information Processor) is a specialty mainframe processor designed to help free

More information

Beyond Basic Scheduling. John Crespin

Beyond Basic Scheduling. John Crespin Beyond Basic Scheduling John Crespin Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change or withdrawal by

More information

Consuming Web Services using CA 2E and IBM Tooling

Consuming Web Services using CA 2E and IBM Tooling Consuming Web Services using CA 2E and IBM Tooling Raghunath Daita Senior Software Engineer Abstract Raghunath Daita CA Technologies, Senior Software Engineer Web Services is the buzzword in the IT industry

More information

Using CA ehealth PM and CA Spectrum IM published API s to integrate and automate your infrastructure management. Presenters: Greg Hall, Will Lauer

Using CA ehealth PM and CA Spectrum IM published API s to integrate and automate your infrastructure management. Presenters: Greg Hall, Will Lauer Using CA ehealth PM and CA Spectrum IM published API s to integrate and automate your infrastructure management Presenters: Greg Hall, Will Lauer Terms of This Presentation This presentation was based

More information

How to Automate Common z/vm and Linux on System z Tasks Session 10049

How to Automate Common z/vm and Linux on System z Tasks Session 10049 How to Automate Common z/vm and Linux on System z Tasks Session 10049 Disclaimer >This presentation is based on current information and resource allocations as of August 17, 2007 and is subject to change

More information

CA Automation Capabilities A Technical Look at Process and Runbook Automation. Tom Kouhsari and AJ Dennis

CA Automation Capabilities A Technical Look at Process and Runbook Automation. Tom Kouhsari and AJ Dennis CA Automation Capabilities A Technical Look at Process and Runbook Automation Tom Kouhsari and AJ Dennis Terms of This Presentation This presentation was based on current information and resource allocations

More information

Global Command Center: Lights Out Datacenter. Darrin Solomon, VP Infrastructure CA

Global Command Center: Lights Out Datacenter. Darrin Solomon, VP Infrastructure CA Global Command Center: Lights Out Datacenter Darrin Solomon, VP Infrastructure Architecture @ CA Terms of This Presentation This presentation was based on current information and resource allocations as

More information

Upgrading to Clarity v12. Michael Hoefer VP and Chief Architect, Clarity PPM

Upgrading to Clarity v12. Michael Hoefer VP and Chief Architect, Clarity PPM Upgrading to Clarity v12 Michael Hoefer VP and Chief Architect, Clarity PPM Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and

More information

Leveraging CA ehealth Performance Manager Proactive Performance Alerting. Joel Kaufman & Kathy Hickey

Leveraging CA ehealth Performance Manager Proactive Performance Alerting. Joel Kaufman & Kathy Hickey Leveraging CA ehealth Performance Manager Proactive Performance Alerting Joel Kaufman & Kathy Hickey Terms of This Presentation This presentation was based on current information and resource allocations

More information

CA 2E Status and Plans

CA 2E Status and Plans CA 2E Status and Plans Terms of This Presentation This presentation was based on current information and resource allocations as of September 23, 2009 and is subject to change or withdrawal by CA at any

More information

1A Windows Presentation Foundation Explained. Rob Layzell CA Technologies

1A Windows Presentation Foundation Explained. Rob Layzell CA Technologies 1A Windows Presentation Foundation Explained Rob Layzell CA Technologies Legal This presentation was based on current information and resource allocations as of April 18, 2011 and is subject to change

More information

Managing Database Performance Within Virtual Environments. Walter Guerrero, Sr. Software Engineer

Managing Database Performance Within Virtual Environments. Walter Guerrero, Sr. Software Engineer Managing Database Performance Within Virtual Environments Walter Guerrero, Sr. Software Engineer Terms of This Presentation This presentation was based on current information and resource allocations as

More information

CA Plex Status and Plans

CA Plex Status and Plans CA Plex Status and Plans Terms of This Presentation This presentation was based on current information and resource allocations as of September 23, 2009 and is subject to change or withdrawal by CA at

More information

CA IDMS Using VSAM Transparency

CA IDMS Using VSAM Transparency Using VSAM Transparency Date: 16-Jan-2018 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your

More information

CA IDMS VSAM Transparency

CA IDMS VSAM Transparency CA IDMS VSAM Transparency VSAM Transparency User Guide Release 18.5.00, 2nd Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred

More information

CA Workload Automation (DE) Internals and Troubleshooting. Lee Stecklov

CA Workload Automation (DE) Internals and Troubleshooting. Lee Stecklov CA Workload Automation (DE) Internals and Troubleshooting Lee Stecklov Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject

More information

CA IDMS Total Transparency

CA IDMS Total Transparency CA IDMS Total Transparency Total Transparency User Guide Release 18.5.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the

More information

CA IDMS. Logical Record Facility Guide. Release

CA IDMS. Logical Record Facility Guide. Release CA IDMS Logical Record Facility Guide Release 18500 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information

Mile Terms of Use. Effective Date: February, Version 1.1 Feb 2018 [ Mile ] Mileico.com

Mile Terms of Use. Effective Date: February, Version 1.1 Feb 2018 [ Mile ] Mileico.com Mile Terms of Use Effective Date: February, 2018 Version 1.1 Feb 2018 [ Mile ] Overview The following are the terms of an agreement between you and MILE. By accessing, or using this Web site, you acknowledge

More information

Dynamic What? I m Dynamic, Aren t You? Andrew Chapman & Sam Knutson VP Product Management CA Technologies

Dynamic What? I m Dynamic, Aren t You? Andrew Chapman & Sam Knutson VP Product Management CA Technologies Dynamic What? I m Dynamic, Aren t You? Andrew Chapman & Sam Knutson VP Product Management CA Technologies March 13, 2014 Dynamic Data Center: Business Solutions on Demand Continuous Delivery Bring Your

More information

CA IT Client Manager / CA Unicenter Desktop and Server Management

CA IT Client Manager / CA Unicenter Desktop and Server Management CA GREEN BOOKS CA IT Client Manager / CA Unicenter Desktop and Server Management Object Level Security Best Practices LEGAL NOTICE This publication is based on current information and resource allocations

More information

Web Services in Ac-on. Mark Schroeder 2E Track

Web Services in Ac-on. Mark Schroeder 2E Track Web Services in Ac-on Mark Schroeder 2E Track FOR INFORMATION PURPOSES ONLY Terms of this presenta3on This presenta-on was based on current informa-on and resource alloca-ons as of April 2013 and is subject

More information

Leveraging BCPii in Automation

Leveraging BCPii in Automation Leveraging BCPii in Zachary Williams CA Technologies August 4, 2014 Session #16090 Insert Custom Session QR if Desired. Agenda BCPii Use Case Discussion Goal How do we make our jobs easier by using BCPii

More information

CA IDMS Using DB Analyzer

CA IDMS Using DB Analyzer Using DB Analyzer Date: 15-Jan-2018 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

CA Nimsoft Monitor. Probe Guide for iseries Job Monitoring. jobs v1.3 series

CA Nimsoft Monitor. Probe Guide for iseries Job Monitoring. jobs v1.3 series CA Nimsoft Monitor Probe Guide for iseries Job Monitoring jobs v1.3 series Contact CA Contact CA Support For your convenience, CA Technologies provides one site where you can access the information that

More information

Clarity Technical Know-How

Clarity Technical Know-How Clarity Technical Know-How Volume One Michael Hoefer VP & Chief Architect, Clarity PPM Terms of This Presentation This presentation was based on current information and resource allocations as of October

More information

CA Jobtrac r11 Update. John Moore

CA Jobtrac r11 Update. John Moore CA Jobtrac r11 Update John Moore Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change or withdrawal by CA at

More information

CA AutoSys Workload. Troubleshooting

CA AutoSys Workload. Troubleshooting CA AutoSys Workload Automation r11 Troubleshooting Presenters: Dan Shannon, Elizabeth Dexter Terms of This Presentation This presentation was based on current information and resource allocations as of

More information

Big Brother is Watching Your Big Data: z/os Actions Buried in the FISMA Security Regulation

Big Brother is Watching Your Big Data: z/os Actions Buried in the FISMA Security Regulation Big Brother is Watching Your Big Data: z/os Actions Buried in the FISMA Security Regulation Bill Valyo CA Technologies February 7, 2013 Session #12765 Quick Abstract: About this Presentation This presentation

More information

MyCreditChain Terms of Use

MyCreditChain Terms of Use MyCreditChain Terms of Use Date: February 1, 2018 Overview The following are the terms of an agreement between you and MYCREDITCHAIN. By accessing, or using this Web site, you acknowledge that you have

More information

CA PMA Chargeback. Release Notes. Release

CA PMA Chargeback. Release Notes. Release CA PMA Chargeback Release Notes Release 12.6.00 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51 CA SSO Agent for Oracle PeopleSoft Release Notes r12.51 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ),

More information

CA Nimsoft Monitor. Probe Guide for DHCP Server Response Monitoring. dhcp_response v3.2 series

CA Nimsoft Monitor. Probe Guide for DHCP Server Response Monitoring. dhcp_response v3.2 series CA Nimsoft Monitor Probe Guide for DHCP Server Response Monitoring dhcp_response v3.2 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject

More information

BRM Accelerator Release Notes - On Premise. Service Pack

BRM Accelerator Release Notes - On Premise. Service Pack BRM Accelerator Release Notes - On Premise Service Pack 03.0.02 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Cross Product Reporting

Cross Product Reporting Cross Product Reporting User Guide Latest Revision: November 3, 2008 iii Legal Notice This publication is based on current information and resource allocations as of its date of publication and is subject

More information

How to Deploy and Use the CA ARCserve RHA Probe for Nimsoft

How to Deploy and Use the CA ARCserve RHA Probe for Nimsoft How to Deploy and Use the CA ARCserve RHA Probe for Nimsoft This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA SiteMinder. Advanced Password Services Release Notes 12.52

CA SiteMinder. Advanced Password Services Release Notes 12.52 CA SiteMinder Advanced Password Services Release Notes 12.52 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA Workload Automation Agent for Micro Focus

CA Workload Automation Agent for Micro Focus CA Workload Automation Agent for Micro Focus Release Notes r11.3.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA IDMS Using Presspack

CA IDMS Using Presspack Using Presspack Date: 16-Jan-2018 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

CA Nimsoft Monitor Snap

CA Nimsoft Monitor Snap CA Nimsoft Monitor Snap Configuration Guide for Network Connectivity Monitoring net_connect v2.9 series Legal Notices This online help system (the "System") is for your informational purposes only and

More information

DB2 Performance A Primer. Bill Arledge Principal Consultant CA Technologies Sept 14 th, 2011

DB2 Performance A Primer. Bill Arledge Principal Consultant CA Technologies Sept 14 th, 2011 DB2 Performance A Primer Bill Arledge Principal Consultant CA Technologies Sept 14 th, 2011 Agenda Performance Defined DB2 Instrumentation Sources of performance metrics DB2 Performance Disciplines System

More information

ENQ Downgrade & CA MIM Update

ENQ Downgrade & CA MIM Update ENQ Downgrade & CA MIM Update Sujay Solomon Jason Tucker CA Technologies August 7 th 2014 Session #16085 Insert Custom Session QR if Desired. www.share.org ENQ downgrade capability Initiator s use of the

More information

All About Integration

All About Integration All About Integration XOG XML Open Gateway Lars Seibert, Engineering Services Architect July 2009 Terms of This Presentation This presentation was based on current information and resource allocations

More information

Release Notes. Release 12.2

Release Notes. Release 12.2 Release Notes Release 12.2 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ), is for your informational purposes

More information

Personalizing CA Clarity PPM User Guide. Release

Personalizing CA Clarity PPM User Guide. Release Personalizing CA Clarity PPM User Guide Release 13.2.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA Workload Automation Agent for Databases

CA Workload Automation Agent for Databases CA Workload Automation Agent for Databases Release Notes r11.3.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Product Roadmap. CA Spectrum Infrastructure Manager Roadmap

Product Roadmap. CA Spectrum Infrastructure Manager Roadmap CA Spectrum Infrastructure Manager Roadmap CA Product Management July 2009 Quick Links to Roadmap Content Product Mission Product Strategy Previous Release Status Current Release Status Next Release Planned

More information

CA Workload Automation SE and the CA WA Agents r11.3. Ellen O'Connell

CA Workload Automation SE and the CA WA Agents r11.3. Ellen O'Connell CA Workload Automation SE and the CA WA Agents r11.3 Ellen O'Connell Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject

More information

ABSOFT Corporation Software License Agreement. Specifically for IMSL FORTRAN 5.0 BUNDLED WITH FORTRAN COMPILERS FROM ABSOFT FOR WINDOWS OR OS X

ABSOFT Corporation Software License Agreement. Specifically for IMSL FORTRAN 5.0 BUNDLED WITH FORTRAN COMPILERS FROM ABSOFT FOR WINDOWS OR OS X ABSOFT Corporation Software License Agreement Specifically for IMSL FORTRAN 5.0 BUNDLED WITH FORTRAN COMPILERS FROM ABSOFT FOR WINDOWS OR OS X (March 2008) IMPORTANT - READ THIS ENTIRE LICENSE AGREEMENT

More information

CA IDMS Schema Mapper

CA IDMS Schema Mapper CA IDMS Schema Mapper User Guide Release 18.5.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

# All Security All The Time: System z Security Update for CA ACF2, IBM RACF, CA Top Secret

# All Security All The Time: System z Security Update for CA ACF2, IBM RACF, CA Top Secret #12264 All Security All The Time: System z Security Update for CA ACF2, IBM RACF, CA Top Secret February 4, 2013 ~ 3:00pm Mark Hahn Carla A. Flores Session Evaluations QR codes Online for up to 72 hours

More information

CA IDMS Extractor. CA IDMS Database Extractor Option. Release

CA IDMS Extractor. CA IDMS Database Extractor Option. Release CA IDMS Extractor CA IDMS Database Extractor Option Release 18.5.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA File Master Plus for IMS

CA File Master Plus for IMS CA File Master Plus for IMS Best Practices Guide Version 9.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Configuring the CA Workload Automation Desktop Client R11.1. David A. Leigh Principal Consultant - Automation

Configuring the CA Workload Automation Desktop Client R11.1. David A. Leigh Principal Consultant - Automation Configuring the CA Workload Automation Desktop Client R11.1 David A. Leigh Principal Consultant - Automation Terms of This Presentation This presentation was based on current information and resource allocations

More information

CA Cloud Service Delivery Platform

CA Cloud Service Delivery Platform CA Cloud Service Delivery Platform Monitor Performance Release 1.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA File Master Plus. Release Notes. Version

CA File Master Plus. Release Notes. Version CA File Master Plus Release Notes Version 9.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

BrightStor ARCserve Backup for Windows

BrightStor ARCserve Backup for Windows BrightStor ARCserve Backup for Windows Volume Shadow Copy Service Guide r11.5 D01191-2E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for

More information

CA IDMS DLI Transparency

CA IDMS DLI Transparency CA IDMS DLI Transparency DLI Transparency User Guide Release 18.5.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA InterTest Batch Release Notes r8.5

CA InterTest Batch Release Notes r8.5 CA InterTest Batch Release Notes r8.5 Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information

QuickBooks Merchant Services Integration. User Guide

QuickBooks Merchant Services Integration. User Guide QuickBooks Merchant Services Integration User Guide This documentation and related computer software program (hereinafter referred to as the Documentation ) is for the end user's informational purposes

More information

IETF TRUST. Legal Provisions Relating to IETF Documents. February 12, Effective Date: February 15, 2009

IETF TRUST. Legal Provisions Relating to IETF Documents. February 12, Effective Date: February 15, 2009 IETF TRUST Legal Provisions Relating to IETF Documents February 12, 2009 Effective Date: February 15, 2009 1. Background The IETF Trust was formed on December 15, 2005, for, among other things, the purpose

More information

5) Debugging and error trapping

5) Debugging and error trapping 5) Debugging and error trapping Instructions: SIGNAL/CALL, TRACE, TSO Immediate commands HT, RT, HE, HI, TE, TS. Resources: TSO/E REXX User s Guide Chapter 9. Diagnosing Problems Within an Exec This course

More information

On Premise. Service Pack

On Premise. Service Pack On Premise Service Pack 02.0.01 - This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

CA IDMS Presspack. User Guide. Release

CA IDMS Presspack. User Guide. Release CA IDMS Presspack User Guide Release 18.5.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your

More information

Entrust SSL Web Server Certificate Subscription Agreement

Entrust SSL Web Server Certificate Subscription Agreement Entrust SSL Web Server Certificate Subscription Agreement ATTENTION - READ CAREFULLY: THIS SUBSCRIPTION AGREEMENT (THIS "AGREEMENT") IS A LEGAL CONTRACT BETWEEN THE PERSON, ENTITY, OR ORGANIZATION NAMED

More information

Linux on System z: Making the Exception Exceptional

Linux on System z: Making the Exception Exceptional Linux on System z: Making the Exception Exceptional Lowell H. Higley, Sr Principal Product Manager CA Technologies Session 16835 For Informational Purposes Only Terms of this Presentation 2015 CA. All

More information

CA Mobile Device Management Configure Access Control for Using Exchange PowerShell cmdlets

CA Mobile Device Management Configure Access Control for  Using Exchange PowerShell cmdlets CA Mobile Device Management Configure Access Control for Email Using Exchange PowerShell cmdlets This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

CX Recorder. User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0

CX Recorder. User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0 CX Recorder User Guide Version 1.0 February 8, 2010 Copyright 2010 SENSR LLC. All Rights Reserved. R001-418-V1.0 TABLE OF CONTENTS 1 PREAMBLE 3 1.1 Software License Agreement 3 2 INSTALLING CXRECORDER

More information

SPECTRUM. Control Panel User Guide (5029) r9.0.1

SPECTRUM. Control Panel User Guide (5029) r9.0.1 SPECTRUM Control Panel User Guide (5029) r9.0.1 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational purposes

More information

Navigational DML Programming Guide. Release , 2nd Edition

Navigational DML Programming Guide. Release , 2nd Edition Navigational DML Programming Guide Release 18.5.00, 2nd Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

pvs Release Notes All series

pvs Release Notes All series pvs Release Notes All series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal by CA at any time.

More information

Entrust WAP Server Certificate Relying Party Agreement

Entrust WAP Server Certificate Relying Party Agreement Entrust WAP Server Certificate Relying Party Agreement The WAP/WTLS specification v1.1 does not provide a means for certificate revocation checking. The following Relying Party Agreement" provides further

More information

SPECTRUM Control Panel

SPECTRUM Control Panel SPECTRUM Control Panel User Guide Document 5029 Notice This documentation (the "Documentation") and related computer software program (the "Software") (hereinafter collectively referred to as the "Product")

More information

CA IDMS Using SQL Quick Bridge

CA IDMS Using SQL Quick Bridge Using SQL Quick Bridge Date: 15-Jan-2018 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your

More information

CA Unified Infrastructure Management

CA Unified Infrastructure Management CA Unified Infrastructure Management clariion Release Notes All series Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal

More information

CA VM:Secure for z/vm

CA VM:Secure for z/vm CA VM:Secure for z/vm Release Notes Release 3.1, Second Edition 7/20/2014 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as

More information

CA Desktop Migration Manager

CA Desktop Migration Manager CA Desktop Migration Manager CA DMM Release Notes 12.9 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation )

More information

CA InterTest Batch. Release Notes. Release

CA InterTest Batch. Release Notes. Release CA InterTest Batch Release Notes Release 9.1.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

DEMO MANUAL DC2645A LTC MHz to 9GHz High Linearity I/Q Demodulator with Wideband IF Amplifier DESCRIPTION BOARD PHOTO

DEMO MANUAL DC2645A LTC MHz to 9GHz High Linearity I/Q Demodulator with Wideband IF Amplifier DESCRIPTION BOARD PHOTO DESCRIPTION Demonstration circuit 2645A showcases the LTC 5594 300MHz to 9GHz high linearity I/Q demodulator with wideband IF amplifiers. The USB serial controller, DC590B, is required to control and configure

More information

On Premise. Service Pack

On Premise. Service Pack On Premise Service Pack 02.0.01 - This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

APM Import Tool. Product Guide

APM Import Tool. Product Guide APM Import Tool Product Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational purposes only and is

More information

CA 7 Workload Automation Going Cross-Platform Managing you Enterprise Workload Ellen O'Connell

CA 7 Workload Automation Going Cross-Platform Managing you Enterprise Workload Ellen O'Connell CA 7 Workload Automation Going Cross-Platform Managing you Enterprise Workload Ellen O'Connell Terms of This Presentation This presentation was based on current information and resource allocations as

More information

CA InterTest Batch Release Notes Release

CA InterTest Batch Release Notes Release CA InterTest Batch Release Notes Release 9.1.00 Third Edition This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation

More information

End User License Agreement

End User License Agreement End User License Agreement Kyocera International, Inc. ( Kyocera ) End User License Agreement. CAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS ( AGREEMENT ) BEFORE USING OR OTHERWISE ACCESSING THE SOFTWARE

More information

CA IDMS Using CA IDMS DC Sort

CA IDMS Using CA IDMS DC Sort CA IDMS - 190 Using CA IDMS DC Sort Date: 15-Jan-2018 CA IDMS - 190 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Nimsoft Monitor. qos_processor Guide. v1.2 series

Nimsoft Monitor. qos_processor Guide. v1.2 series Nimsoft Monitor qos_processor Guide v1.2 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal

More information

CA Cloud Service Delivery Platform

CA Cloud Service Delivery Platform CA Cloud Service Delivery Platform Manage Users Release 1.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA IdentityMinder. Glossary

CA IdentityMinder. Glossary CA IdentityMinder Glossary 12.6.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

CA ARCserve Backup for Windows

CA ARCserve Backup for Windows CA ARCserve Backup for Windows Release Summary r12.5 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS Introduction This document sets forth the terms and conditions ("Terms and Conditions") governing your use of the MeridianHealth.com Web site ("Web Site")

More information

Release Notes r12.5, Second Edition

Release Notes r12.5, Second Edition Release Notes r12.5, Second Edition Second Edition This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ), is

More information

CA IDMS Reference DML Reference for Assembler

CA IDMS Reference DML Reference for Assembler CA IDMS Reference - 19.0 DML Reference for Assembler Date: 15-Jan-2018 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the

More information

BrightStor ARCserve Backup for Linux

BrightStor ARCserve Backup for Linux BrightStor ARCserve Backup for Linux Agent for Apache Web Server Guide r11.5 D01212-1E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the

More information

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0 Maintenance Release: 1. Release Notes

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0 Maintenance Release: 1. Release Notes BlackBerry Enterprise Server for Microsoft Office 365 Version: 1.0 Maintenance Release: 1 Release Notes Published: 2013-07-18 SWD-20130718144837059 Contents 1 New in this release...4 2 Fixed issues...5

More information

CA TPX Session Management

CA TPX Session Management CA TPX Session Management Release Notes Release 5.3 Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information