Concurrent VSAM access for batch and CICS

Size: px
Start display at page:

Download "Concurrent VSAM access for batch and CICS"

Transcription

1 Concurrent VSAM access for batch and CICS Transparent VSAM file sharing A white paper from:

2 Finding a better way to solve batch issues: concurrent VSAM file sharing When batch processes cause CICS applications to be offline and data to be inaccessible productivity stalls, crucial information is unavailable, and decisions are delayed. This is important because CICS applications drive a large percentage of the transactional processing at the core of worldwide commerce and information systems. According to current estimates, CICS applications handle more than 30 billion transactions per day and process more than $1 trillion dollars' worth of business every week. For many organizations, VSAM data is important to these CICS applications. In fact, a 2015 CICS survey from Enterprise Tech Journal of IT professionals found that 91 percent of respondents had CICS applications that accessed VSAM data, and almost all respondents said batch updated some portion of that data. Yet, 60 percent of respondents with VSAM data admitted to experiencing challenges. The biggest one was Lack of availability for CICS applications during certain periods of the day or night at 74 percent, followed by Lack of real-time data for internal or external customers because of the delay due to batch processing at 48 percent. 1 This batch dilemma becomes more relevant to businesses and their customers as the businesses try to operate for more hours per day, especially online. In fact, 71 percent of respondents in the 2017 Arcati survey said specifically that they re webenabling CICS subsystems. 2 This white paper examines these issues and offers a solution: concurrent VSAM file sharing that creates a virtual processing window in CICS. CICS-VSAM-batch file sharing is a proven method for leveraging high-performance mainframe systems without disrupting users or altering source code. Critical applications depend on the mainframe Critical applications everywhere depend on mainframe data availability. Insurance applications that allow users to handle policy, claims, and annuity payments Banking programs that allow users to manage deposits, withdrawals and account details Programs that allow users to transfer 401k funds, process trades, and access balance information Call center applications that allow employees to update customer records 1. H&W Computer Systems, The state of CICS in the modern enterprise (based on results from the Enterprise Tech Journal survey), H&W Computer Systems, 2015, 2. Arcati Ltd, Arcati Mainframe Yearbook 2017, Arcati Ltd, 2017, 2 Finding a better way to solve batch issues: concurrent VSAM file sharing

3 This paper covers the following four topics that are critical in evaluating a VSAM file-sharing solution: Architecture Performance, reliability, and scalability Recovery CICSplex and Sysplex scalability Reducing the batch window or sharing VSAM files inside CICS You have two general options when dealing with batch window issues. You can either keep tuning batch processes, attempting to reduce the duration of the batch window, or you can break out of the conventional paradigm entirely and consider CICS/batch VSAM file-sharing, thus moving to a virtual batch window. CICS treats a batch step as one transaction (albeit a transaction where many records can be processed). Companies are taking advantage of this concept by processing their batch cycle several times a day; in some cases as often as every two or three minutes. If you take a close look at how often data (which feeds the batch process) arrives at the IT operations area, you may find that running batch more often throughout the day is not only possible but also highly effective. By sharing VSAM files inside CICS, batch jobs appear to CICS like any other online transaction. Batch jobs can then process while CICS continues to have full READ/WRITE access to VSAM files. Since CICS has already been entrusted with your data, extending CICS to batch is a natural move. There are numerous advantages to this approach, including excellent performance, assurance of data integrity, straightforward implementation, and the inherent reliability and recovery benefits of CICS itself. If your batch cycle updates between 100 and 1,000,000 or more records per batch step, this concept is an excellent solution. Concurrent VSAM access for batch and CICS 3

4 Architecture When considering a VSAM file-sharing solution, architectural considerations are crucial for maintaining optimal performance as well as ensuring existing and future compatibility in an evolving mainframe environment. For VSAM file sharing to occur, three fundamental questions must be answered: 1. How does the solution get control of the existing batch program to initiate the file sharing process? 2. How will batch communicate with the CICS address spaces? 3. Is a CICS component available to handle the batch request? In other words, three main areas need to be addressed to determine the optimal architecture: The subsystem Batch-to-CICS communication The CICS component A solution should support an IBM-documented and an IBM-supported subsystem that only awakens when its services are needed. The solution should not take up any cycles when batch- CICS file sharing is not taking place. It should also be able to be implemented in without changes to source code. Of course, there should be no hooks to the operating system (OS) that could cause future incompatibility issues when the OS changes from release to release. Once a file-sharing batch job starts, the subsystem should gain control. Then initial communication between the batch job and CICS should be supported through TCP/IP or VTAM. The solution should then be smart enough to auto-determine if the batch job and the CICS region or regions are running under the same LPAR. If this is the case, the solution should be able to automatically utilize cross-memory services. TCP or VTAM are automatically used if multiple LPARs are involved. This approach ensures that the highest-performing communication is used. Additionally, the CICS component should be just another CICS transaction. If the file-sharing solution conforms to the rules of CICS, it will be forward-compatible and backward-compatible with CICS releases. By following this type of architectural approach, you establish a light system footprint, maintain high performance communication, and ensure forward-compatibility and backward-compatibility when CICS or the OS changes. This type of solution is flexible enough to transparently adapt from a simple LPAR environment to the most sophisticated parallel Sysplex/CICSplex with record-level sharing (RLS) and workload management. 4 Reducing the batch window or sharing VSAM files inside CICS

5 Performance, reliability and scalability Every organization that has embraced file sharing has concerns about system performance. In order to address this topic thoroughly in this paper, performance will be analyzed from a CICS perspective and then from a batch perspective. The most trusted OLTP on the market CICS is the most widely trusted and utilized online transaction processor (OLTP) on the market. IBM has invested more than 40 years into the continued development and improvement of CICS performance, reliability, and integrity. It follows that utilizing CICS to handle batch I/O would be the most logical approach when selecting a filesharing architecture. However, data centers that are tuned to manage millions of transactions a day in their CICS regions have reason to be wary. No one wants to break what works. CICS can handle file sharing with batch it just needs to be configured correctly with the proper subsystem solution in order to ensure success. In order to utilize CICS for batch file sharing and the additional traffic that entails, implement this simple, fundamental concept: tune according to established practices. Your batch file-sharing jobs are now an extension of CICS and will run as long as the CICS address spaces are tuned. For example, if it is appropriate to tune, you might add more strings to your FCT or increase your LSR buffers. Setting CICS transaction priorities to ensure SLAs Since your batch file-sharing job is now just another CICS transaction, you can set a priority for the file-sharing CICS transaction like any other CICS transaction. If there is a lot of traffic in CICS, this tells CICS how best to manage its resources. For example, if a batch file-sharing CICS transaction has a lower priority than another CICS transaction and there is competition for resources, CICS will automatically provide the higher-priority transaction(s) with the resources, and the batch file-sharing job will wait until the resources are available. CICS ensures data integrity for all transactions I/O requests are either successful or backed out. While the system updates a record, other transactions are put on hold. For a single transaction updating multiple VSAM records, the updates are either all successful or they are all backed out. When you add batch processing to the CICS environment, the same data integrity applies. Concurrent VSAM access for batch and CICS 5

6 Sync points and performance To CICS, a batch file-sharing job is a single transaction even though it is a long-running transaction. Most of the time batch jobs complete successfully. In very unusual situations, they do not. If transactions do not complete successfully, CICS automatically backs out any updates that batch makes. For example, when a batch step updates 1000 records, CICS will build up deferred work elements until the sync point is issued at the end of the batch step. If the batch job has an abnormal end-of-job (ABEND) during this process, before a sync point is issued, CICS Dynamic Transaction Backout (DTB) restores records to their original image and makes them available for other transactions. For longer running jobs, the above scenario may not make sense. Some data centers have filesharing batch jobs that update millions of records during a given batch step. If these batch steps do not issue sync points, CICS will lock all records that were updated during the batch step, and CICS will build up deferred work elements to the point that they may consume all available CICS memory. As a result, CICS response time slows, and the CICS address space may crash due to a lack of storage. The solution you implement must give you the ability to prevent this from happening. You want the capability to specify the number of units of work that will be processed before a sync point is issued. Equally important is the ability to adjust the sync point frequency without changing the application itself. Ideally, you want to implement a solution that allows you to associate the sync point frequency with a specific file in the batch job that when you read or write to that file, defines the completion of the unit of work. You could trigger the sync point frequency by simply adding a key word to the DD statement for the file in the batch JCL. Alternatively, you could add an entry in a control file that would accomplish the same task, if changing JCL is not an option. Minimizing the affect of batch I/O on CICS performance Let's take a closer look at how a good file-sharing solution will minimize CICS overhead associated with typical I/O activities you may encounter in common file-sharing scenarios. Many batch jobs are designed to read a record on a transaction file and then read the master file in a sequential order until a match on the record key is found. When this occurs, the business logic in the batch program executes then writes the updated master record. This process repeats until all records on the transaction file have been processed. When this batch program uses file sharing, the read issued to the master file defined to CICS is translated into a CICS I/O instruction known as get-for-update. In terms of CICS overhead, this kind of read is expensive because the record is locked and then unlocked, increasing CPU cycles. If the master file that was just read does not match the key on the transaction file, CICS issues another get-forupdate read. This process repeats until the match is found. 6 Reducing the batch window or sharing VSAM files inside CICS

7 A quality file-sharing solution will recognize this situation and avoid this extra overhead by converting the initial read in CICS to a start browse/read next. This specific CICS I/O instruction uses far fewer cycles in CICS. This is a simple example of how a quality file-sharing solution can minimize overhead in CICS and keep batch run times close to native processing times. Valuable file-sharing solutions recognize this technique and many other types of batch I/O processing techniques and use the one with the best-performing CICS I/O. Sync points, recovery, and restartability When optimizing batch jobs, you must consider the issues of using sync points, recovery, and restartability. Sync points It is best to use sync points on long-running batch jobs to optimize CICS performance and ensure that service-level agreements are met. However, using them creates a recovery situation that you must examine carefully. When sync points are issued, CICS is no longer responsible for the committed unit of work. This means you must create another process that either restores the data to its original condition and reruns the batch job, or one that restarts the batch job and picks up the process at the prior point of failure. If you can simply rerun the job from the beginning without adverse affects on the data, this is not an issue. However, this is typically not the case. If you cannot rerun the job from the beginning, you have two options: You can allow for restartability where the job picks up processing again from the most recent, successful syncpoint, or you can look for a file-sharing solution that performs recovery for you. Let's take a closer look at each alternative. Recovery It is possible to have a file-sharing solution perform recovery for you. Any recovery process must preserve data integrity. Remember, if an ABEND occurs, CICS DTB will back out any in-flight unit of work. An in-flight unit of work is the records that batch is processing and that are not available for other transactions to use. When the program issues sync points, the updates that batch made to any records must be reversed or backed out. The next batch job to start after the initial ABEND occurs should back out these updates. Concurrent VSAM access for batch and CICS 7

8 In order to implement recovery, you should adjust production JCL by adding a recovery step after each update step. While the recovery step is running, these files are still fully available to CICS. Running a batch recovery process while the file is available to CICS means that other transactions could be updating the same data fields that the recovery process is backing out. You want to select a file-sharing solution with a recovery process that recognizes these different situations and handles them appropriately. From a wall clock point of view, recovery will take longer than restartability. When you compare which of these approaches is best for your organization, consider how often batch jobs ABEND, whether you have source code available for the batch programs, and whether you have programmers that understand the architecture of each batch program that needs to be changed. Also evaluate how long it will take your programmers to change the source code and then test those changes. Restartability Allowing the batch job to restart at the point of failure is a good solution. In order to implement this, however, you have to make the source code available for each batch program using the file-sharing approach and also have programmers available to change the code. Programmers need to understand the architecture of the programs and be able to add the restartability code to the program. When coding is complete, each scenario needs to be tested to ensure that the job was done correctly. People who are familiar with restartability and the architecture of the batch program are the best resources for adding restartability to batch programs. If you include restartability in a batch program in a production environment, the recovered batch job will finish processing sooner because it restarts at the point of failure. With a virtual batch window, however, this may no longer be an issue. 8 Reducing the batch window or sharing VSAM files inside CICS

9 CICSplex and Sysplex scalability When you choose a solution, keep in mind that the best file-sharing solution will support past, current, and future IBM environments. This means it should work correctly in the CICSplex and Sysplex. It will also support IBM guidelines for LPAR pricing and usage monitoring, TCP/IP and/or VTAM networking communication, and function correctly with the workload manager (WLM). Day-one support for new OS and CICS releases should also be on the list of requirements. Conclusions: a better way CICS and batch are two extremely reliable and stable processes. Performance is managed easily, the systems are understood, and expectations are already in place. All the practices you have developed over the years remain when you implement a VSAM file-sharing solution, and there is no need to drastically modify what you have already invested in, namely the mainframe itself, CICS, existing CICS and batch applications, and the people and skills who support everyday functions. Using a solution that tightly integrates into CICS, you can take advantage of existing CICS services. Source code remains intact, SLAs are protected, there is minimal impact on existing processes, data integrity persists even after ABENDs, and the solution is scalable across CICSplex and Sysplex environments. The solution does not need to be redesigned or rearchitected when IBM changes or improves CICS. Production considerations When choosing a file-sharing solution, consider if it: Leaves a light footprint on your system Recognizes read/update processing Integrates update logs for recoverability Includes a restartability option Nonintrusively processes specific VSAM files step-by-step Controls batch prioritization Scales and performs appropriately in CICSplex and Sysplex environments When implementing a file-sharing solution, you will be prepared for production in 1 to 30 days if it: Works without changes to source code in batch or CICS programs Has architecture and implementation processes that follow well-known techniques understood by professional IT people familiar with the z/os platform Is offered by a vendor that comes to your facility to ensure that your pilot application is implemented correctly and your employees can comfortably use the solution in both test and production environments. Concurrent VSAM access for batch and CICS 9

10 The advantages of this solution are clear. Rip-and-replace is a risky, time-consuming, and costly undertaking. These ROI considerations alone are significant. The time and effort required to recode applications or replace systems can be avoided. The user community requires no re-training, and existing IT processes and procedures can remain as well. The world now expects data availability and application access on a 24/7 schedule. By sharing VSAM files inside of CICS, you can avoid the pain associated with alternative approaches while ensuring high-performance levels, data integrity, implementation ease, reliability, and recoverability. To learn more about transparent VSAM file sharing, call or go to sysb-ii. About H&W Headquartered in Boise, Idaho, H&W has been a leading provider of quality software solutions since H&W creates reliable, technically sound solutions like SYSB-II that provide long-term value. Today corporations worldwide, including many Global 500 companies, trust H&W for their IT software and services needs. Call or visit North Meeker Pl., Ste 100 Boise, ID by H&W Computer Systems, Inc. All rights reserved (v.1) 10

Concurrent VSAM access for batch and CICS: A white paper series

Concurrent VSAM access for batch and CICS: A white paper series Concurrent VSAM access for batch and CICS: A white paper series Transparent VSAM file sharing via CICS and batch A white paper from: Finding a better way to solve batch issues: concurrent VSAM file sharing

More information

Concurrent VSAM access for batch and CICS: A white paper series

Concurrent VSAM access for batch and CICS: A white paper series Concurrent VSAM access for batch and CICS: A white paper series Overview: Conventional and current alternatives A white paper from: IBM and CICS are trademarks or registered trademarks of International

More information

Concurrent VSAM access for batch and CICS: A white paper series

Concurrent VSAM access for batch and CICS: A white paper series Concurrent VSAM access for batch and CICS: A white paper series VSAM Record-Level Sharing (RLS) A white paper from: IBM, CICS, Db2, and z/os are trademarks or registered trademarks of International Business

More information

CICS insights from IT professionals revealed

CICS insights from IT professionals revealed CICS insights from IT professionals revealed A CICS survey analysis report from: IBM, CICS, and z/os are registered trademarks of International Business Machines Corporation in the United States, other

More information

Concurrent VSAM access for batch and CICS: A white paper series

Concurrent VSAM access for batch and CICS: A white paper series Concurrent VSAM access for batch and CICS: A white paper series Transactional VSAM (DFSMStvs) A white paper from: IBM, CICS, Db2, and z/os are trademarks or registered trademarks of International Business

More information

ThruPut Manager AE Product Overview From

ThruPut Manager AE Product Overview From Intro ThruPut Manager AE (Automation Edition) is the only batch software solution in its class. It optimizes and automates the total z/os JES2 batch workload, managing every job from submission to end

More information

VSHARE FOR Z/OS. Installation and Operations Guide. VSHARE allows multiple programs to access and. simultaneously by giving batch jobs the ability to

VSHARE FOR Z/OS. Installation and Operations Guide. VSHARE allows multiple programs to access and. simultaneously by giving batch jobs the ability to VSHARE FOR Z/OS Installation and Operations Guide Multiple Region VSAM File Sharing Product Release 3 Version 0D VSHARE allows multiple programs to access and update the same VSAM file simultaneously by

More information

Unum s Mainframe Transformation Program

Unum s Mainframe Transformation Program Unum s Mainframe Transformation Program Ronald Tustin Unum Group rtustin@unum.com Tuesday August 13, 2013 Session Number 14026 Unum Unum is a Fortune 500 company and one of the world s leading employee

More information

Alberta Pensions Administration Corporation Client Case Study Chooses Fujitsu Legacy Modernization Solution for Mainframe Migration Profile

Alberta Pensions Administration Corporation Client Case Study Chooses Fujitsu Legacy Modernization Solution for Mainframe Migration Profile Client Case Study Alberta Pensions Administration Corporation Chooses Fujitsu Legacy Modernization Solution for Mainframe Migration Profile Located in Edmonton, Alta., Canada, Alberta Pensions Administration

More information

VSAM Management. Overview. z/os. CSI International 8120 State Route 138 Williamsport, OH

VSAM Management. Overview. z/os. CSI International 8120 State Route 138 Williamsport, OH VSAM Management Overview z/os CSI International 8120 State Route 138 Williamsport, OH 43164-9767 http://www.csi-international.com (800) 795-4914 - USA (740) 420-5400 - Main Operator (740) 333-7335 - Facsimile

More information

High Availability through Warm-Standby Support in Sybase Replication Server A Whitepaper from Sybase, Inc.

High Availability through Warm-Standby Support in Sybase Replication Server A Whitepaper from Sybase, Inc. High Availability through Warm-Standby Support in Sybase Replication Server A Whitepaper from Sybase, Inc. Table of Contents Section I: The Need for Warm Standby...2 The Business Problem...2 Section II:

More information

Chapter 1 CONCEPTS AND FACILITIES. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 CONCEPTS AND FACILITIES. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 CONCEPTS AND FACILITIES SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: Objects of MQ. Features and benefits. Purpose of utilities. Architecture of the MQ system. Queue

More information

IMS Evolution. IMS database

IMS Evolution. IMS database IMS Evolution IMS dates back to 1968, when it was develloped for North American Rockwell Corporation to manage large bills of material for the construction of the Apollo spacecraft program. Database management

More information

... IBM Power Systems with IBM i single core server tuning guide for JD Edwards EnterpriseOne

... IBM Power Systems with IBM i single core server tuning guide for JD Edwards EnterpriseOne IBM Power Systems with IBM i single core server tuning guide for JD Edwards EnterpriseOne........ Diane Webster IBM Oracle International Competency Center January 2012 Copyright IBM Corporation, 2012.

More information

VSAM Management. Overview. CSI International 8120 State Route 138 Williamsport, OH

VSAM Management. Overview. CSI International 8120 State Route 138 Williamsport, OH VSAM Management Overview CSI International 8120 State Route 138 Williamsport, OH 43164-9767 http://www.csi-international.com (800) 795-4914 - USA (740) 420-5400 - Main Operator (740) 333-7335 - Facsimile

More information

WebSphere Application Server, Version 5. What s New?

WebSphere Application Server, Version 5. What s New? WebSphere Application Server, Version 5 What s New? 1 WebSphere Application Server, V5 represents a continuation of the evolution to a single, integrated, cost effective, Web services-enabled, J2EE server

More information

ASG-TMON SOLUTIONS OVERVIEW

ASG-TMON SOLUTIONS OVERVIEW PERFORMANCE MANAGEMENT ASG-TMON SOLUTIONS OVERVIEW Monitor and Manage Your Critical Business Systems ASG-TMON SOLUTIONS OVERVIEW ASG-TMON FOR Z/OS - OVERVIEW The ASG-TMON family of products provides comprehensive

More information

MAINVIEW Batch Optimizer. Data Accelerator Andy Andrews

MAINVIEW Batch Optimizer. Data Accelerator Andy Andrews MAINVIEW Batch Optimizer Data Accelerator Andy Andrews Can I push more workload through my existing hardware configuration? Batch window problems can often be reduced down to two basic problems:! Increasing

More information

10 Things to expect from a DB2 Cloning Tool

10 Things to expect from a DB2 Cloning Tool 10 Things to expect from a DB2 Cloning Tool This document gives a brief overview of functionalities that can be expected from a modern DB2 cloning tool. The requirement to copy DB2 data becomes more and

More information

Moving From Reactive to Proactive Storage Management with an On-demand Cloud Solution

Moving From Reactive to Proactive Storage Management with an On-demand Cloud Solution Moving From Reactive to Proactive Storage Management with an On-demand Cloud Solution The Ever-Present Storage Management Conundrum In the modern IT landscape, the storage management conundrum is as familiar

More information

Technology Insight Series

Technology Insight Series IBM ProtecTIER Deduplication for z/os John Webster March 04, 2010 Technology Insight Series Evaluator Group Copyright 2010 Evaluator Group, Inc. All rights reserved. Announcement Summary The many data

More information

The Migration/Modernization Dilemma

The Migration/Modernization Dilemma The Migration/Modernization Dilemma By William Calcagni www.languageportability.com 866.731.9977 Approaches to Legacy Conversion For many years businesses have sought to reduce costs by moving their legacy

More information

Mainframe Backup Modernization Disk Library for mainframe

Mainframe Backup Modernization Disk Library for mainframe Mainframe Backup Modernization Disk Library for mainframe Mainframe is more important than ever itunes Downloads Instagram Photos Twitter Tweets Facebook Likes YouTube Views Google Searches CICS Transactions

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

Introduction. JES Basics

Introduction. JES Basics Introduction The Job Entry Subsystem (JES) is a #11 IN A SERIES subsystem of the z/os operating system that is responsible for managing jobs. The two options for a job entry subsystem that can be used

More information

The future of database technology is in the clouds

The future of database technology is in the clouds Database.com Getting Started Series White Paper The future of database technology is in the clouds WHITE PAPER 0 Contents OVERVIEW... 1 CLOUD COMPUTING ARRIVES... 1 THE FUTURE OF ON-PREMISES DATABASE SYSTEMS:

More information

Micro Focus Studio Enterprise Edition Test Server

Micro Focus Studio Enterprise Edition Test Server product review Micro Focus Studio Enterprise Edition Test Server Micro Focus Studio Enterprise Edition Test Server (Test Server) is a testing suite that supports pre-production testing of mainframe applications

More information

Certkiller.P questions

Certkiller.P questions Certkiller.P2140-020.59 questions Number: P2140-020 Passing Score: 800 Time Limit: 120 min File Version: 4.8 http://www.gratisexam.com/ P2140-020 IBM Rational Enterprise Modernization Technical Sales Mastery

More information

2008 WebSphere System z Podcasts - Did you say Mainframe?

2008 WebSphere System z Podcasts - Did you say Mainframe? TITLE: WebSphere Extended Deployment for z/os HOST: Hi, and welcome to the Did you say mainframe? podcast series. This is where we regularly interview IBM technical experts who can help you to understand

More information

Lotus Sametime 3.x for iseries. Performance and Scaling

Lotus Sametime 3.x for iseries. Performance and Scaling Lotus Sametime 3.x for iseries Performance and Scaling Contents Introduction... 1 Sametime Workloads... 2 Instant messaging and awareness.. 3 emeeting (Data only)... 4 emeeting (Data plus A/V)... 8 Sametime

More information

VERITAS Storage Foundation 4.0 TM for Databases

VERITAS Storage Foundation 4.0 TM for Databases VERITAS Storage Foundation 4.0 TM for Databases Powerful Manageability, High Availability and Superior Performance for Oracle, DB2 and Sybase Databases Enterprises today are experiencing tremendous growth

More information

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005 Oracle Database 10g Resource Manager An Oracle White Paper October 2005 Oracle Database 10g Resource Manager INTRODUCTION... 3 SYSTEM AND RESOURCE MANAGEMENT... 3 ESTABLISHING RESOURCE PLANS AND POLICIES...

More information

Real-time Protection for Microsoft Hyper-V

Real-time Protection for Microsoft Hyper-V Real-time Protection for Microsoft Hyper-V Introduction Computer virtualization has come a long way in a very short time, triggered primarily by the rapid rate of customer adoption. Moving resources to

More information

The Modern Mainframe. IBM Systems. Powerful, secure, dependable and easier to use. Bernice Casey System z User Experience

The Modern Mainframe. IBM Systems. Powerful, secure, dependable and easier to use. Bernice Casey System z User Experience Powerful, secure, dependable and easier to use Bernice Casey (casey@us.ibm.com) System z User Experience Steven Ma (stevenma@us.ibm.com) Application Integration Middleware User Experience 2006 IBM Corporation

More information

Oracle s JD Edwards EnterpriseOne IBM POWER7 performance characterization

Oracle s JD Edwards EnterpriseOne IBM POWER7 performance characterization Oracle s JD Edwards EnterpriseOne IBM POWER7 performance characterization Diane Webster IBM Oracle International Competency Center January 2012 Copyright IBM Corporation, 2012. All Rights Reserved. All

More information

Paradigm Shifts in How Tape is Viewed and Being Used on the Mainframe

Paradigm Shifts in How Tape is Viewed and Being Used on the Mainframe Paradigm Shifts in How Tape is Viewed and Being Used on the Mainframe Ralph Armstrong EMC Corporation February 5, 2013 Session 13152 2 Conventional Outlook Mainframe Tape Use Cases BACKUP SPACE MGMT DATA

More information

The VERITAS VERTEX Initiative. The Future of Data Protection

The VERITAS VERTEX Initiative. The Future of Data Protection The VERITAS VERTEX Initiative V E R I T A S W H I T E P A P E R The Future of Data Protection Table of Contents Introduction.................................................................................3

More information

BMC Subsystem Optimizer for zenterprise Reducing Monthly License Charges

BMC Subsystem Optimizer for zenterprise Reducing Monthly License Charges BMC Subsystem Optimizer for zenterprise Reducing Monthly License Charges David Schipper Lead Product Manager david_schipper@bmc.com 11 March 2015 Agenda Sub-capacity Pricing and Monthly License Charges

More information

Reaping the Benefits of Managed Services

Reaping the Benefits of Managed Services Figure 1. Converged Network with Managed Services These services complement each other when bundled together. For example, an IP VPN service makes managing an IP voice network simpler and more effective

More information

Uni Hamburg Mainframe Summit 2010 z/os The Mainframe Operating. Part 4 z/os Overview

Uni Hamburg Mainframe Summit 2010 z/os The Mainframe Operating. Part 4 z/os Overview Uni Hamburg Mainframe Summit 2010 z/os The Mainframe Operating Part 4 z/os Overview Redelf Janßen IBM Technical Sales Mainframe Systems Redelf.Janssen@de.ibm.com Course materials may not be reproduced

More information

Continuous Availability with the IBM DB2 purescale Feature IBM Redbooks Solution Guide

Continuous Availability with the IBM DB2 purescale Feature IBM Redbooks Solution Guide Continuous Availability with the IBM DB2 purescale Feature IBM Redbooks Solution Guide Designed for organizations that run online transaction processing (OLTP) applications, the IBM DB2 purescale Feature

More information

SWsoft ADVANCED VIRTUALIZATION AND WORKLOAD MANAGEMENT ON ITANIUM 2-BASED SERVERS

SWsoft ADVANCED VIRTUALIZATION AND WORKLOAD MANAGEMENT ON ITANIUM 2-BASED SERVERS SWsoft ADVANCED VIRTUALIZATION AND WORKLOAD MANAGEMENT ON ITANIUM 2-BASED SERVERS Abstract Virtualization and workload management are essential technologies for maximizing scalability, availability and

More information

What you need to know about cloud backup: your guide to cost, security, and flexibility. 8 common questions answered

What you need to know about cloud backup: your guide to cost, security, and flexibility. 8 common questions answered What you need to know about cloud backup: your guide to cost, security, and flexibility. 8 common questions answered Over the last decade, cloud backup, recovery and restore (BURR) options have emerged

More information

DB2 Data Sharing Then and Now

DB2 Data Sharing Then and Now DB2 Data Sharing Then and Now Robert Catterall Consulting DB2 Specialist IBM US East September 2010 Agenda A quick overview of DB2 data sharing Motivation for deployment then and now DB2 data sharing /

More information

Automated Conversions to IBM DB2 for z/os IBM Redbooks Solution Guide

Automated Conversions to IBM DB2 for z/os IBM Redbooks Solution Guide Automated Conversions to IBM DB2 for z/os IBM Redbooks Solution Guide Business agility is essential to client success in the fast-paced, competitive, and highly regulated global business climate of today.

More information

Four Essential Steps for Removing Risk and Downtime from Your POWER9 Migration

Four Essential Steps for Removing Risk and Downtime from Your POWER9 Migration Four Essential Steps for Removing Risk and Downtime from Your POWER9 Migration Syncsort Four Essential Steps for Removing Risk and Downtime from Your POWER9 Migration With the introduction of IBM s POWER9

More information

Best Practices. Deploying Optim Performance Manager in large scale environments. IBM Optim Performance Manager Extended Edition V4.1.0.

Best Practices. Deploying Optim Performance Manager in large scale environments. IBM Optim Performance Manager Extended Edition V4.1.0. IBM Optim Performance Manager Extended Edition V4.1.0.1 Best Practices Deploying Optim Performance Manager in large scale environments Ute Baumbach (bmb@de.ibm.com) Optim Performance Manager Development

More information

Roll Up for the Magical Mystery Tour of Software Costs 16962

Roll Up for the Magical Mystery Tour of Software Costs 16962 Roll Up for the Magical Mystery Tour of Software Costs 16962 David Schipper Lead Product Manager March 5, 2015 Abstract Hey Dude, don t make them mad. Take an invoice and make it smaller. Remember to optimize

More information

Adapter for Mainframe

Adapter for Mainframe BEA WebLogic Java Adapter for Mainframe Introduction Release 5.1 Document Date: August 2002 Copyright Copyright 2002 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software and documentation

More information

System development, design & implementation

System development, design & implementation System development, design & implementation Design of software The following are the principle for any software design : Modularity and partitioning : Top down methods are used through out the analysis

More information

SmarterMail v. Exchange: Admin Comparison

SmarterMail v. Exchange: Admin Comparison SmarterMail v. Exchange: Admin Comparison Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2018 SmarterTools Inc. SmarterMail and Microsoft

More information

DELL EMC DATA DOMAIN BOOST AND DYNAMIC INTERFACE GROUPS

DELL EMC DATA DOMAIN BOOST AND DYNAMIC INTERFACE GROUPS WHITE PAPER DELL EMC DATA DOMAIN BOOST AND DYNAMIC INTERFACE GROUPS Maximize the efficiency of multiple network interfaces Abstract Dell EMC delivers dynamic interface groups to simplify the use of multiple

More information

Maximizing offload to ziip processors with DB2 9 for z/os native SQL stored procedures

Maximizing offload to ziip processors with DB2 9 for z/os native SQL stored procedures Maximizing offload to ziip processors with DB2 9 for z/os native SQL stored procedures Richard Corrihons IBM Customer Center - PSSC Montpellier, France Introduction This document is based on what has been

More information

How to Evaluate a Next Generation Mobile Platform

How to Evaluate a Next Generation Mobile Platform How to Evaluate a Next Generation Mobile Platform appcelerator.com Introduction Enterprises know that mobility presents an unprecedented opportunity to transform businesses and build towards competitive

More information

Disaster Recovery Solutions for Oracle Database Standard Edition RAC. A Dbvisit White Paper By Anton Els

Disaster Recovery Solutions for Oracle Database Standard Edition RAC. A Dbvisit White Paper By Anton Els Disaster Recovery Solutions for Oracle Database Standard Edition RAC A Dbvisit White Paper By Anton Els Copyright 2017 Dbvisit Software Limited. All Rights Reserved V3, Oct 2017 Contents Executive Summary...

More information

Caché and Data Management in the Financial Services Industry

Caché and Data Management in the Financial Services Industry Caché and Data Management in the Financial Services Industry Executive Overview One way financial services firms can improve their operational efficiency is to revamp their data management infrastructure.

More information

IBM Tivoli OMEGAMON XE on z/os

IBM Tivoli OMEGAMON XE on z/os Manage and monitor your z/os and OS/390 systems IBM Highlights Proactively manage performance and availability of IBM z/os and IBM OS/390 systems from a single, integrated interface Maximize availability

More information

APIs Economy for Mainframe Customers: A new approach for modernizing and reusing mainframe assets

APIs Economy for Mainframe Customers: A new approach for modernizing and reusing mainframe assets Contact us: ZIO@hcl.com APIs Economy for Mainframe Customers: A new approach for modernizing and reusing mainframe assets www.zio-community.com Meet Our Experts and Learn the Latest News Copyright 2018

More information

Dell EMC Hyper-Converged Infrastructure

Dell EMC Hyper-Converged Infrastructure Dell EMC Hyper-Converged Infrastructure New normal for the modern data center GLOBAL SPONSORS Traditional infrastructure and processes are unsustainable Expensive tech refreshes, risky data migrations

More information

CICS Version 4 Event Processing

CICS Version 4 Event Processing CICS Version 4 Event Processing Ian J Mitchell IBM Hursley Thursday 11th August 2011 Session Number 9330 IBM's statements regarding its plans, directions, and intent are subject to change or withdrawal

More information

Security Correlation Server Redundancy And Failover Guide

Security Correlation Server Redundancy And Failover Guide CorreLog Security Correlation Server Redundancy And Failover Guide This document provides a discussion of techniques to implement CorreLog Server redundancy and failover, for high-availability usage of

More information

Roadmap to the Efficient Cloud: 3 Checkpoints for the Modern Enterprise

Roadmap to the Efficient Cloud: 3 Checkpoints for the Modern Enterprise Roadmap to the Efficient Cloud: 3 Checkpoints for the Modern Enterprise Roadmap for the Modern Enterprise As your AWS environment grows, the importance of instilling governance and following best practice

More information

QLogic TrueScale InfiniBand and Teraflop Simulations

QLogic TrueScale InfiniBand and Teraflop Simulations WHITE Paper QLogic TrueScale InfiniBand and Teraflop Simulations For ANSYS Mechanical v12 High Performance Interconnect for ANSYS Computer Aided Engineering Solutions Executive Summary Today s challenging

More information

webmethods EntireX for ESB: Leveraging Platform and Application Flexibility While Optimizing Service Reuse

webmethods EntireX for ESB: Leveraging Platform and Application Flexibility While Optimizing Service Reuse December 2008 webmethods EntireX for ESB: Leveraging Platform and Application Flexibility While Optimizing Service Reuse By Chris Pottinger, Sr. Manager Product Development, and Juergen Lind, Sr. Product

More information

IBM GDPS V3.3: Improving disaster recovery capabilities to help ensure a highly available, resilient business environment

IBM GDPS V3.3: Improving disaster recovery capabilities to help ensure a highly available, resilient business environment Marketing Announcement February 14, 2006 IBM GDPS V3.3: Improving disaster recovery capabilities to help ensure a highly available, resilient business environment Overview GDPS is IBM s premier continuous

More information

BUILDING A NEXT-GENERATION FIREWALL

BUILDING A NEXT-GENERATION FIREWALL How to Add Network Intelligence, Security, and Speed While Getting to Market Faster INNOVATORS START HERE. EXECUTIVE SUMMARY Your clients are on the front line of cyberspace and they need your help. Faced

More information

Capturing Your Changed Data

Capturing Your Changed Data Capturing Your Changed Data with the CONNX Data Synchronization Tool Table of Contents Executive Summary 1 Fulfilling a Need with Minimal Investment 2 Departmental Reporting Servers 3 Data Migration 4

More information

Splunking Your z/os Mainframe Introducing Syncsort Ironstream

Splunking Your z/os Mainframe Introducing Syncsort Ironstream Copyright 2016 Splunk Inc. Splunking Your z/os Mainframe Introducing Syncsort Ironstream Ed Hallock Director of Product Management, Syncsort Inc. Disclaimer During the course of this presentation, we may

More information

Perf-Method-06.PRZ The Swami's Performance Methodology Ideas Dan Janda The Swami of VSAM The Swami of VSE/VSAM Dan Janda VSE, VSAM and CICS Performanc

Perf-Method-06.PRZ The Swami's Performance Methodology Ideas Dan Janda The Swami of VSAM The Swami of VSE/VSAM Dan Janda VSE, VSAM and CICS Performanc The Swami's Performance Methodology Ideas Dan Janda The Swami of VSAM The Swami of VSE/VSAM Dan Janda VSE, VSAM and CICS Performance Consultant RR 2 Box 49E Hamlin Road Montrose, PA 18801-9624 World Alliance

More information

Cobol. Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES

Cobol. Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES Corporate Solutions Pvt. Ltd. Cobol Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project

More information

BUSINESS CONTINUITY: THE PROFIT SCENARIO

BUSINESS CONTINUITY: THE PROFIT SCENARIO WHITE PAPER BUSINESS CONTINUITY: THE PROFIT SCENARIO THE BENEFITS OF A COMPREHENSIVE BUSINESS CONTINUITY STRATEGY FOR INCREASED OPPORTUNITY Organizational data is the DNA of a business it makes your operation

More information

Hyperconverged Infrastructure: Cost-effectively Simplifying IT to Improve Business Agility at Scale

Hyperconverged Infrastructure: Cost-effectively Simplifying IT to Improve Business Agility at Scale Enterprise Strategy Group Getting to the bigger truth. White Paper Hyperconverged Infrastructure: Cost-effectively Simplifying IT to Improve Business Agility at Scale By Mike Leone, ESG Senior Analyst;

More information

IBM. CICSPlex SM Concepts and Planning. CICS Transaction Server for z/os. Version 5 Release 4

IBM. CICSPlex SM Concepts and Planning. CICS Transaction Server for z/os. Version 5 Release 4 for z/os IBM CICSPlex SM Concepts and Planning Version 5 Release 4 for z/os IBM CICSPlex SM Concepts and Planning Version 5 Release 4 Note Before using this information and the product it supports, read

More information

ORACLE DEPLOYMENT DECISION GUIDE: COMPARING YOUR DEPLOYMENT OPTIONS

ORACLE DEPLOYMENT DECISION GUIDE: COMPARING YOUR DEPLOYMENT OPTIONS ORACLE DEPLOYMENT DECISION GUIDE: COMPARING YOUR DEPLOYMENT OPTIONS Oracle Database Appliance (ODA) Oracle Exadata Commodity x86 Servers Public Cloud IBM POWER DIY Vendita Database Cloud Server (DCS) IBM

More information

Tender Schedule No. Figure: Active-Active Cluster with RAC

Tender Schedule No. Figure: Active-Active Cluster with RAC Tender Schedule No SIBL-IT-2014-01- ORACLE_RAC_ADG Social Islami Bank Ltd is running Core Islami Banking Solution since 2009. Total no of Branches/Users is increasing per year. Now, Database Server Load

More information

Discover the all-flash storage company for the on-demand world

Discover the all-flash storage company for the on-demand world Discover the all-flash storage company for the on-demand world STORAGE FOR WHAT S NEXT The applications we use in our personal lives have raised the level of expectations for the user experience in enterprise

More information

CICS Introduction and Overview

CICS Introduction and Overview CICS Introduction and Overview Ezriel Gross Circle Software Incorporated August 13th, 2013 (Tue) 4:30pm 5:30pm Session 13347 Agenda What is CICS and Who Uses It Pseudo Conversational Programming CICS Application

More information

Why Continuity Matters

Why  Continuity Matters Why Email Continuity Matters Contents What is Email Continuity and Why it Matters........................... 1 Challenges to Email Continuity................................... 2 Increasing Email Management

More information

IBM Tivoli System Automation for z/os

IBM Tivoli System Automation for z/os Policy-based self-healing to maximize efficiency and system availability IBM Highlights Provides high availability for IBM z/os Offers an advanced suite of systems and IBM Parallel Sysplex management and

More information

IBM CICS TS V5.5. Your essential guide to this release

IBM CICS TS V5.5. Your essential guide to this release IBM CICS TS V5.5 Your essential guide to this release CICS TS V5.5 As CICS reaches its 50th year of CICS Transaction Server we arrive at the launch of CICS TS V5.5, our most advanced and powerful version

More information

White Paper. Low Cost High Availability Clustering for the Enterprise. Jointly published by Winchester Systems Inc. and Red Hat Inc.

White Paper. Low Cost High Availability Clustering for the Enterprise. Jointly published by Winchester Systems Inc. and Red Hat Inc. White Paper Low Cost High Availability Clustering for the Enterprise Jointly published by Winchester Systems Inc. and Red Hat Inc. Linux Clustering Moves Into the Enterprise Mention clustering and Linux

More information

Hyper-Converged Infrastructure: Providing New Opportunities for Improved Availability

Hyper-Converged Infrastructure: Providing New Opportunities for Improved Availability Hyper-Converged Infrastructure: Providing New Opportunities for Improved Availability IT teams in companies of all sizes face constant pressure to meet the Availability requirements of today s Always-On

More information

Control/SE. Concepts and Facilities Guide. July, Via De Albur Court Suite 100 El Paso, TX P. (800) F.

Control/SE. Concepts and Facilities Guide. July, Via De Albur Court Suite 100 El Paso, TX P. (800) F. Control/SE Concepts and Facilities Guide July, 2015 6416 Via De Albur Court Suite 100 El Paso, TX 79912 P. (800) 252-1400 F. (915) 845-7918 Support@marblecomputer.com www.marblecomputer.com Table of Contents

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

VSAM Access Method or DBMS?

VSAM Access Method or DBMS? TechTalk : Access method or DBMS? 11/15/04 Access Method or DBMS? Tony Skinner Transaction Processing Consultant IBM Certified System Designer tonysk@lightyr.com Business Partner Tony Skinner Lightyear

More information

IBM IMS Database Solution Pack for z/os Version 2 Release 1. Overview and Customization IBM SC

IBM IMS Database Solution Pack for z/os Version 2 Release 1. Overview and Customization IBM SC IBM IMS Database Solution Pack for z/os Version 2 Release 1 Overview and Customization IBM SC19-4007-04 IBM IMS Database Solution Pack for z/os Version 2 Release 1 Overview and Customization IBM SC19-4007-04

More information

NetIQ's VoIP Management Products

NetIQ's VoIP Management Products Products, D. Neil Research Note 10 September 2002 NetIQ's VoIP Management Products NetIQ has announced its Voice over IP management strategy and has a number of pre- and post-implementation products available.

More information

Transactional VSAM: An Application Programmer's Perspective

Transactional VSAM: An Application Programmer's Perspective Transactional VSAM: An Application Programmer's Perspective IBM zseries Technical Conference Session TSS05 Ruth Ferziger IBM Design & Development ruthf@us.ibm.com zseries Technical Conference 1 Agenda

More information

IBM Tivoli OMEGAMON XE on z/os. Troubleshooting No-data Conditions on the Enhanced 3270 User Interface

IBM Tivoli OMEGAMON XE on z/os. Troubleshooting No-data Conditions on the Enhanced 3270 User Interface IBM Tivoli OMEGAMON XE on z/os Troubleshooting No-data Conditions on the Enhanced 3270 User Interface Version 1.3, November, 2013 IBM Tivoli OMEGAMON XE on z/os Troubleshooting No-data Conditions on the

More information

ECONOMICAL, STORAGE PURPOSE-BUILT FOR THE EMERGING DATA CENTERS. By George Crump

ECONOMICAL, STORAGE PURPOSE-BUILT FOR THE EMERGING DATA CENTERS. By George Crump ECONOMICAL, STORAGE PURPOSE-BUILT FOR THE EMERGING DATA CENTERS By George Crump Economical, Storage Purpose-Built for the Emerging Data Centers Most small, growing businesses start as a collection of laptops

More information

e BOOK Do you feel trapped by your database vendor? What you can do to take back control of your database (and its associated costs!

e BOOK Do you feel trapped by your database vendor? What you can do to take back control of your database (and its associated costs! e BOOK Do you feel trapped by your database vendor? What you can do to take back control of your database (and its associated costs!) With private and hybrid cloud infrastructures now reaching critical

More information

Introduction to DB2 11 for z/os

Introduction to DB2 11 for z/os Chapter 1 Introduction to DB2 11 for z/os This chapter will address the job responsibilities of the DB2 system administrator, what to expect on the IBM DB2 11 System Administrator for z/os certification

More information

The Case for and Value of Transactional VSAM. A CICS/Batch File Sharing Enhancement. Session TSS03 Ruth Ferziger What is VSAM RLS?

The Case for and Value of Transactional VSAM. A CICS/Batch File Sharing Enhancement. Session TSS03 Ruth Ferziger What is VSAM RLS? The Case for and Value of Transactional VSAM A CICS/Batch File Sharing Enhancement Session TSS03 Ruth Ferziger ruthf@us.ibm.com What is VSAM RLS? VSAM record level sharing (RLS) was introduced in DFSMS/MVS

More information

Craig S. Mullins. A DB2 for z/os Performance Roadmap By Craig S. Mullins. Database Performance Management Return to Home Page.

Craig S. Mullins. A DB2 for z/os Performance Roadmap By Craig S. Mullins. Database Performance Management Return to Home Page. Craig S. Mullins Database Performance Management Return to Home Page December 2002 A DB2 for z/os Performance Roadmap By Craig S. Mullins Assuring optimal performance is one of a database administrator's

More information

Datacenter replication solution with quasardb

Datacenter replication solution with quasardb Datacenter replication solution with quasardb Technical positioning paper April 2017 Release v1.3 www.quasardb.net Contact: sales@quasardb.net Quasardb A datacenter survival guide quasardb INTRODUCTION

More information

Evaluating Hyperconverged Full Stack Solutions by, David Floyer

Evaluating Hyperconverged Full Stack Solutions by, David Floyer Evaluating Hyperconverged Full Stack Solutions by, David Floyer April 30th, 2018 Wikibon analysis and modeling is used to evaluate a Hyperconverged Full Stack approach compared to a traditional x86 White

More information

De-dupe: It s not a question of if, rather where and when! What to Look for and What to Avoid

De-dupe: It s not a question of if, rather where and when! What to Look for and What to Avoid De-dupe: It s not a question of if, rather where and when! What to Look for and What to Avoid By Greg Schulz Founder and Senior Analyst, the StorageIO Group Author The Green and Virtual Data Center (CRC)

More information

Microsoft Virtualization Delivers More Capabilities, Better Value than VMware

Microsoft Virtualization Delivers More Capabilities, Better Value than VMware It s clear that virtualization can help you save money and operate more effi ciently. However, what may not be so apparent at fi rst glance, is which virtualization approach makes the most sense. VMware

More information

Business Benefits of Policy Based Data De-Duplication Data Footprint Reduction with Quality of Service (QoS) for Data Protection

Business Benefits of Policy Based Data De-Duplication Data Footprint Reduction with Quality of Service (QoS) for Data Protection Data Footprint Reduction with Quality of Service (QoS) for Data Protection By Greg Schulz Founder and Senior Analyst, the StorageIO Group Author The Green and Virtual Data Center (Auerbach) October 28th,

More information

DISK LIBRARY FOR MAINFRAME

DISK LIBRARY FOR MAINFRAME DISK LIBRARY FOR MAINFRAME Mainframe Tape Replacement with cloud connectivity ESSENTIALS A Global Virtual Library for all mainframe tape use cases Supports private and public cloud providers. GDDR Technology

More information