The Migration/Modernization Dilemma

Size: px
Start display at page:

Download "The Migration/Modernization Dilemma"

Transcription

1 The Migration/Modernization Dilemma By William Calcagni

2 Approaches to Legacy Conversion For many years businesses have sought to reduce costs by moving their legacy applications and databases to hardware that runs under Windows. Often these legacy applications run on mainframe computers using block mode terminals such as 3270s and are written in COBOL utilizing mainframe database technology such as VSAM or DB2. In contrast, the desired end state for the application is to run on low cost hardware with an interactive GUI interface using an object oriented language such as C# and a more fully featured database. In order to move from the present state to the desired state several possible paths exist: Re-architecting, Platform Migration, and/or Modernization. Re-architecting (Rewriting) Perhaps the most conceptually appealing approach is to re-architect the application for the new target hardware and software environment. This is often billed as the ultimate modernization process. The argument is made that the application can take advantage of the full capabilities of object oriented languages and relational databases while providing the users with an attractive and interactive GUI interface that fully integrates with the operating system. The argument continues that the existing business logic can be mined from the current application and embedded in the new application using equivalent logic in the object oriented language. Cost Factors of Re-architecting While conceptually appealing, this approach has historically proven to be the most expensive, time consuming and risky choice. It is the most expensive because of several factors. First, the business logic must be mined from the existing application. Usually there is little or no documentation and even when documentation exists it seldom reflects the current state of the application. Once the application logic is mined, a model is usually developed. Then the application is rewritten in a new language, the database is redesigned to a relational model and the testing process begins. This is expensive because most of the work is usually done by consultants. The existing staff rarely has the expertise in the target technologies and rarely has the time to completely document the existing application. If they had the time to document the system they would have already done so. So the work is tasked to consultants whose cost per hour usually exceeds the in-house staff rate. This approach is also the most time consuming for the same reasons it is the most expensive it takes a long time for the consultants to learn enough about the application to do their work. The mining of the business logic can consume many man-months of effort. This is followed by a complete development effort. Since 100% of the code is new, extensive testing is required. All of this takes a lot of time and money.

3 Risk Factors of Re-architecting This approach is also the most risky. First, the job of determining the business rules usually falls to people who have no knowledge of the application. To the extent that experienced staff members assist, they are diverted from ongoing maintenance and enhancement of the existing application. This can cause the business to fall behind its competitors in advancing their technology. Second, since 100% of the application is new code, extensive testing is required not only to correct programming bugs but to ensure that the new application follows the same business rules as the old one. To the extent that development staff and user staff are absorbed in the process of testing the new application they are distracted from the business of the company and from maintaining competitiveness. There are numerous examples of companies that launched re-architecting projects only to find themselves 5 years into a 2 year rewrite. They then had to abandon the project due to cost and time overruns. Meanwhile the companies that attempted them lost market position while they were absorbed in the re-architecting process.

4 Platform Migration Another strategy that is conceptually appealing is to migrate the existing application from its currently platform and database to a functionally equivalent application running a different dialect of COBOL on a Windows system. Using this approach, the business logic is preserved intact and is shifted to the new platform via a code migration that is often referred to as a Lift and Shift. VSAM files might be converted from hierarchical to relational as necessary and the database access code in the application programs is modified accordingly. Data migration can often be accomplished using automated tools. Cost Factors of Platform Migration This approach usually results in the lowest cost and lowest risk because the existing business logic is preserved and the process can be at least partially automated. This reduces the cost and the amount of time necessary to reach the desired end state. Additionally, less testing is required because application logic has been migrated rather than re-written and the process has been automated thereby guaranteeing consistency. Risk Factors of Platform Migration These factors stated above reduce risk. The primary negative to this approach is that, from the point of view of the end user, nothing has changed. From the point of view of senior management, a considerable commitment of time and money has been made without improving on the competitiveness of the business. At the end of the day, the result is still a portfolio of COBOL applications and a staff of COBOL programmers doing the same things they always did code COBOL, access data via EXEC SQL and communicate with users via EXEC CICS. The UI is still encapsulated in BMS Maps that continue to be maintained. For this reason, many companies look to modernization instead of migration. Personnel Factors of Platform Migration Another negative is a corollary to the problem mentioned above. Because the application is still COBOL, the need to find COBOL programmers still exists. As anyone with responsibility for staffing a COBOL development team know, the number of COBOL programmers is constantly dwindling due to retirement and lack of COBOL training at the college or technical school level. This forces managers to either compete for a constantly diminishing pool of trained COBOL developers or to create them through an in-house training program. Either of these options adds cost.

5 Modernization A modernization strategy seeks to preserve the logic of the application while replacing the COBOL programming language with a modern, object-oriented language such as C#. In addition, through detailed analysis and abstraction of the COBOL program data and logic, restructuring to a more object oriented model can take place. Value Proposition to Modernization While most COBOL dialects claim to have object oriented capabilities the truth is that COBOL was never meant to be an object oriented language and most COBOL programmers have little practical experience in true object oriented design or development. By contrast, programmers trained in C# have been engrained with the design principals of object oriented development and most have also been extensively exposed to modern design patterns such as REST and Model-View- Controller methodologies. Modernizing the application by migrating it to an object-oriented language and a rich development environment such as Visual Studio allows future enhancement of the application to take advantage of these methodologies. It also simplifies testing, debugging and deployment. Unlike a platform migration, the end state of a modernization is to change the way the development staff works. Rather than business as usual on a different platform, the development staff now features development in C# using true object oriented programming techniques, modern design patterns, interactive debugging and automated testing all coordinated within an advanced interactive development environment. Variants of Modernization There are a number of variants to the modernization model that are worth examining. One conceptually appealing variant claims that the application can be completely decoupled from the language and, therefore, can be transformed from being written to conform to the rules and design constraints of COBOL logic to an application that appears to have been originally designed in an object oriented language. Unfortunately, this approach ignores the reality that application designs are constrained by the language in which they are to be written. This is true even within object oriented languages. Consider C++ and C#. Both are object oriented languages. However, it would be next to impossible to automatically migrate a C++ application to C# and have it look and function exactly as if it had been originally designed for C#. The chance of success with COBOL is even smaller. The result is usually a partially automated modernization that requires a great deal of manual intervention in order to attempt to resolve the inherent conflicts between the COBOL programming model and any object oriented model. The reality is that an application design is as much a creature of the implementation language as a brain is a creature of the body in which it lives. Likewise, an effective modernization strategy has to accept certain realities created by the original choice of language, namely COBOL.

6 The Key Question: How much transformation? In any modernization, the goal is to create, to the maximum extent practical, an application that can be maintained using object oriented techniques i.e. one that is as object oriented as it can be. However, working against this is the necessity of preserving some of the existing data structure and functionality to ensure accuracy and maintainability. This, in turn, requires a consistent and accurate transformation of data and logic in the source language to the target language. Each time a structural change is made in mapping from the original to the target, all the logic that operates on that structure must be changed. For example, trying to completely abstract a series of COBOL programs to create a set of classes that define business processes and encapsulate only the data for that process involves a massive restructuring of the data. That, in turn, will require a massive restructuring of the logic that operates on that data. The original system is proven and reliable because, through years of effort, the data structures and logic are internally consistent and certain protocols and conventions are followed throughout the system. The more the structure and logic are altered from the original, the more this internal consistency breaks down and the resulting code becomes less of a migration and more of a rewrite. The resulting code is, to a large extent, new logic rather than a faithful mapping of the proven logic. Therefore, this new code can expect error rates consistent with new code exactly the problem an automated migration is designed to prevent. Cost/Risk Analysis The modernization approach shares much in common with a platform migration in terms of cost and risk so long as the degree of modernization is kept within limited bounds and that is the Migration/Modernization dilemma: the more a business attempts to transform the application while modernizing it, the more the costs and risks approach that of rearchitecting.

7 4 Cost/Risk C o s t Cost/Risk 0 Migration Modernization Rearchitect As the approach to legacy conversion moves toward re-architecting, costs/risks increase exponentially. Language Portability Solutions Modernization Approach Language Portability s team has been involved in conversions, migrations and modernizations for over 15 years. During that time we have seen and participated in dozens of projects. From that experience Language Portability has developed a tested and proven approach that combines the best features of migration and modernization while keeping the project at the low end of the cost/risk curve. The approach can best be described as a sequence of migrate, modernize and implement, then enhance and/or re-architect going forward. Language Portability Modernization Language Portability s modernization is done using Language Portability s extensive set of automated tools. These tools provide automated migration of programs and databases including the necessary conversion of both database structures and access logic to account for SQL differences between databases. Because the process is automated, all programs in the application are changed consistently. This reduces the amount of testing required. During this migration phase, the application logic is automatically filtered from COBOL to C#. This is done using a proven model of maximum practical modernization. This means that extensive analysis is done to the application programs to transform them to the maximum degree practical into object oriented replacements. However, unlike the complete abstraction variant, this approach recognizes the reality that, in order to avoid interjecting difficult to find errors, certain conventions dictated by COBOL must be followed even in the C# application. Through its years of experience helping businesses successfully migrate and modernize applications,

8 Language Portability has developed a modernization strategy that provides a maximum degree of modernization without pushing the project up the risk/cost curve. 4 Cost/Risk C o s t Cost/Risk 0 Migration Modernization Rearchitect Legacy conversion moves toward re-architecting, but costs/risks increase only marginally. COBOL to C# Conversion Often one of the primary motivations for management in moving to a Windows platform is the ability to have future development done in an object oriented language such as C#. This is the crux of the re-architect argument. Language Portability has a strategy that allows the business to use the least risky and lowest cost solution automated migration and modernization while positioning the application to be maintained and enhanced using an object oriented language. Short of rewriting the application, no COBOL program can be made as completely object oriented as one originally written in C#. However, the data and business logic can be converted to objects and methods that can be consumed by true object oriented languages. This allows all future development to be done using object oriented language and design patterns. Enhancements to the existing system are made using the same object oriented language but using a set of classes and methods that account for the realities of the language from which they came (COBOL).

9 Conclusion This approach has grown out of Language Portability s 15+ years of migration experience and 20+ years of tool building experience. Using Language Portability s measured approach to modernization a business can obtain the greatest combination of cost savings, risk management and application improvement. The application is moved off of the mainframe quickly and efficiently, maintaining original constructs and standards, thus reducing costs. The application is migrated and modernized using proven tools and techniques and the application is positioned for incremental improvement and re-architecting in the least disruptive manner.

Transforming Legacy Code: The Pitfalls of Automation

Transforming Legacy Code: The Pitfalls of Automation Transforming Legacy Code: The Pitfalls of Automation By William Calcagni and Robert Camacho www.languageportability.com 866.731.9977 Code Transformation Once the decision has been made to undertake an

More information

LEGACY SYSTEMS MODERNIZATION SERVICES.

LEGACY SYSTEMS MODERNIZATION SERVICES. LEGACY SYSTEMS MODERNIZATION SERVICES www.eratech.com.eg Slide # 1 Feb. 2013 Agenda 1. Modernization of Legacy Systems Why and How? 2. Success Story Central Auditing Organization 3. Introducing Informix

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

Migrating from ISAM to SQL with Go Up Technology s Solution

Migrating from ISAM to SQL with Go Up Technology s Solution Migrating from ISAM to SQL with Go Up Technology s Solution 10 reasons why converting your applications and their database via Go Up Technology s 100% true automated solution, can make all the difference

More information

RED HAT ENTERPRISE LINUX. STANDARDIZE & SAVE.

RED HAT ENTERPRISE LINUX. STANDARDIZE & SAVE. RED HAT ENTERPRISE LINUX. STANDARDIZE & SAVE. Is putting Contact us INTRODUCTION You know the headaches of managing an infrastructure that is stretched to its limit. Too little staff. Too many users. Not

More information

SCASE STUDYS. Migrating from MVS to.net: an Italian Case Study. bizlogica Italy. segui bizlogica

SCASE STUDYS. Migrating from MVS to.net: an Italian Case Study. bizlogica Italy.  segui bizlogica SCASE STUDYS Migrating from MVS to.net: an Italian Case Study bizlogica Italy executive summary This report describes how BIZLOGICA helped a large Corporation to successful reach the objective of saving

More information

Crash Course in Modernization. A whitepaper from mrc

Crash Course in Modernization. A whitepaper from mrc Crash Course in Modernization A whitepaper from mrc Introduction Modernization is a confusing subject for one main reason: It isn t the same across the board. Different vendors sell different forms of

More information

Legacy Metamorphosis. By Charles Finley, Transformix Computer Corporation

Legacy Metamorphosis. By Charles Finley, Transformix Computer Corporation Legacy Metamorphosis By Charles Finley, Transformix Computer Corporation Legacy Metamorphosis By Charles Finley, Transformix Computer Corporation Introduction A legacy application is any application based

More information

A Visual Guide to Automated MVC Reengineering

A Visual Guide to Automated MVC Reengineering D a t a b o r o u g h A Visual Guide to Automated MVC Reengineering Steve Kilner This guide has the following sections: 1. Three Steps To New and Improved Systems 2. Why Reengineer? 3. Bad Practices of

More information

Categorizing Migrations

Categorizing Migrations What to Migrate? Categorizing Migrations A version control repository contains two distinct types of data. The first type of data is the actual content of the directories and files themselves which are

More information

Challenges of Analyzing Parametric CFD Results. White Paper Published: January

Challenges of Analyzing Parametric CFD Results. White Paper Published: January Challenges of Analyzing Parametric CFD Results White Paper Published: January 2011 www.tecplot.com Contents Introduction... 3 Parametric CFD Analysis: A Methodology Poised for Growth... 4 Challenges of

More information

Version Overview. Business value

Version Overview. Business value PRODUCT SHEET CA Ideal for CA Datacom CA Ideal for CA Datacom Version 14.0 An integrated mainframe application development environment for z/os which provides an interface for web enablement, CA Ideal

More information

Automated Netezza Migration to Big Data Open Source

Automated Netezza Migration to Big Data Open Source Automated Netezza Migration to Big Data Open Source CASE STUDY Client Overview Our client is one of the largest cable companies in the world*, offering a wide range of services including basic cable, digital

More information

PROGRESS OPENEDGE PRO2

PROGRESS OPENEDGE PRO2 OpenEdge Pro2 OpenEdge Data Server Oracle, SQL Server, OpenEdge PROGRESS OPENEDGE PRO2 DATA REPLICATION Progress.com A Contents Introduction 3 Executive Summary 4 The Pro2 Solution 5 Pro2 Administration

More information

Concurrent VSAM access for batch and CICS

Concurrent VSAM access for batch and CICS Concurrent VSAM access for batch and CICS Transparent VSAM file sharing A white paper from: Finding a better way to solve batch issues: concurrent VSAM file sharing When batch processes cause CICS applications

More information

Three Key Considerations for Your Public Cloud Infrastructure Strategy

Three Key Considerations for Your Public Cloud Infrastructure Strategy GOING PUBLIC: Three Key Considerations for Your Public Cloud Infrastructure Strategy Steve Follin ISG WHITE PAPER 2018 Information Services Group, Inc. All Rights Reserved The Market Reality The race to

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

TECHNOLOGY WHITE PAPER. Java for the Real Time Business

TECHNOLOGY WHITE PAPER. Java for the Real Time Business TECHNOLOGY WHITE PAPER Executive Summary The emerging Real Time Business Imperative means your business now must leverage new technologies and high volumes of data to deliver insight, capability and value

More information

Case study on PhoneGap / Apache Cordova

Case study on PhoneGap / Apache Cordova Chapter 1 Case study on PhoneGap / Apache Cordova 1.1 Introduction to PhoneGap / Apache Cordova PhoneGap is a free and open source framework that allows you to create mobile applications in a cross platform

More information

DATAWAREHOUSING AND ETL PROCESSES: An Explanatory Research

DATAWAREHOUSING AND ETL PROCESSES: An Explanatory Research DATAWAREHOUSING AND ETL PROCESSES: An Explanatory Research Priyanshu Gupta ETL Software Developer United Health Group Abstract- In this paper, the author has focused on explaining Data Warehousing and

More information

Expert Reference Series of White Papers. Introduction to Amazon Auto Scaling

Expert Reference Series of White Papers. Introduction to Amazon Auto Scaling Expert Reference Series of White Papers Introduction to Amazon Auto Scaling 1-800-COURSES www.globalknowledge.com Introduction to Amazon Auto Scaling Jon M. Gallagher, Global Knowledge Instructor, Certified

More information

CA Rapid Reorg for DB2 for z/os

CA Rapid Reorg for DB2 for z/os PRODUCT SHEET CA Rapid Reorg for DB2 for z/os CA Rapid Reorg for DB2 for z/os CA Rapid Reorg for DB2 for z/os (CA Rapid Reorg) helps you perform quick and effective DB2 data reorganizations to help increase

More information

3Lesson 3: Web Project Management Fundamentals Objectives

3Lesson 3: Web Project Management Fundamentals Objectives 3Lesson 3: Web Project Management Fundamentals Objectives By the end of this lesson, you will be able to: 1.1.11: Determine site project implementation factors (includes stakeholder input, time frame,

More information

Application Modernisation

Application Modernisation Application Modernisation KFA Management Report - Application Modernisation The modernisation of applications has been an important topic for many years. The technology which our industry is founded on

More information

Migration to Service Oriented Architecture Using Web Services Whitepaper

Migration to Service Oriented Architecture Using Web Services Whitepaper WHITE PAPER Migration to Service Oriented Architecture Using Web Services Whitepaper Copyright 2004-2006, HCL Technologies Limited All Rights Reserved. cross platform GUI for web services Table of Contents

More information

Understanding Managed Services

Understanding Managed Services Understanding Managed Services The buzzword relating to IT Support is Managed Services, and every day more and more businesses are jumping on the bandwagon. But what does managed services actually mean

More information

Cloud solution consultant

Cloud solution consultant Cloud solution consultant Role brief Directorate Jisc technologies Base location Harwell or Bristol Grade B Level 18 Job family Professional services Date November 2017 Reports to Cloud services group

More information

Senior Project: Calendar

Senior Project: Calendar Senior Project: Calendar By Jason Chin June 2, 2017 Contents 1 Introduction 1 2 Vision and Scope 2 2.1 Business Requirements...................... 2 2.1.1 Background........................ 2 2.1.2 Business

More information

Introduction to K2View Fabric

Introduction to K2View Fabric Introduction to K2View Fabric 1 Introduction to K2View Fabric Overview In every industry, the amount of data being created and consumed on a daily basis is growing exponentially. Enterprises are struggling

More information

INTELLIGENT MODERNIZATION AND MIGRATION

INTELLIGENT MODERNIZATION AND MIGRATION INTELLIGENT MODERNIZATION AND MIGRATION Optimizing Network Infrastructure for a New Networked World Network and service requirements are changing faster than ever before. In this environment, Communications

More information

CA Test Data Manager Key Scenarios

CA Test Data Manager Key Scenarios WHITE PAPER APRIL 2016 CA Test Data Manager Key Scenarios Generate and secure all the data needed for rigorous testing, and provision it to highly distributed teams on demand. Muhammad Arif Application

More information

SPICE. SPICE SQL General Information Manual. Release 1.1 SPI Span Software Consultants Limited

SPICE. SPICE SQL General Information Manual. Release 1.1 SPI Span Software Consultants Limited SPICE S p a n I n t e g r a t e d C h e c k p o i n t / R e s t a r t E n v i r o n m e n t SPICE SQL General Information Manual Release 1.1 SPI 14 04 Span Software Consultants Limited The Genesis Centre

More information

m-powered : A practical application of the iseries Developer Roadmap

m-powered : A practical application of the iseries Developer Roadmap m-powered : A practical application of the iseries Developer Roadmap How mrc modernized and reinvented its mrc-productivity Series as the fully portable, Java-based m-power and how you can do it for your

More information

CASE STUDY AEROSOFT SYSTEMS MOVING FROM ACUCOBOL/PERL/C-ISAM TO JAVA WITH MICROSOFT SQL SERVER, WINDOWS SERVER AND HYPER-V

CASE STUDY AEROSOFT SYSTEMS MOVING FROM ACUCOBOL/PERL/C-ISAM TO JAVA WITH MICROSOFT SQL SERVER, WINDOWS SERVER AND HYPER-V CASE STUDY AEROSOFT SYSTEMS MOVING FROM ACUCOBOL/PERL/C-ISAM TO JAVA WITH MICROSOFT SQL SERVER, WINDOWS SERVER AND HYPER-V Introduction AeroSoft Systems, headquartered in Mississauga, Ontario, Canada since

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

Sample Exam. Advanced Test Automation - Engineer

Sample Exam. Advanced Test Automation - Engineer Sample Exam Advanced Test Automation - Engineer Questions ASTQB Created - 2018 American Software Testing Qualifications Board Copyright Notice This document may be copied in its entirety, or extracts made,

More information

SERVICE OVERVIEW SERVICES CATALOGUE

SERVICE OVERVIEW SERVICES CATALOGUE SERVICE OVERVIEW SERVICES CATALOGUE February 2010 With a proven track record of 600 modernization projects to date, harness Micro Focus outstanding record and experience of delivering enterprise application

More information

The White Papers. Employing Knowledge Management for Oracle, DB2 and SQL Server. By Steve Hilker & Daniel Norwood

The White Papers. Employing Knowledge Management for Oracle, DB2 and SQL Server. By Steve Hilker & Daniel Norwood The White Papers Employing Knowledge Management for Oracle, DB2 and SQL Server By Steve Hilker & Daniel Norwood Contents Employing Knowledge Management... 3 Introduction... 3 Overview... 3 The Challenges...

More information

Choosing an Intellectual Property Core

Choosing an Intellectual Property Core Choosing an Intellectual Property Core MIPS Technologies, Inc. June 2002 One of the most important product development decisions facing SOC designers today is choosing an intellectual property (IP) core.

More information

ASNA Case Study. ASNA Wings: Re-imagining Modernization at INFOCON Both Ways. Leaders in IBM i Modernization

ASNA Case Study. ASNA Wings: Re-imagining Modernization at INFOCON Both Ways. Leaders in IBM i Modernization ASNA Case Study ASNA Wings: Re-imagining Modernization at INFOCON Both Ways. Modernizing for a GUI doesn t mean you have to give up the power of RPG. By Thomas M. Stockwell Fueled by the talent of more

More information

Overview. Business value

Overview. Business value PRODUCT SHEET CA Top Secret for z/vse CA Top Secret for z/vse CA Top Secret for z/vse provides innovative and comprehensive security for business transaction environments which enable your business to

More information

RELIABILITY & AVAILABILITY IN THE CLOUD

RELIABILITY & AVAILABILITY IN THE CLOUD RELIABILITY & AVAILABILITY IN THE CLOUD A TWILIO PERSPECTIVE twilio.com To the leaders and engineers at Twilio, the cloud represents the promise of reliable, scalable infrastructure at a price that directly

More information

Cloud solution consultant

Cloud solution consultant Cloud solution consultant Role brief Directorate Jisc technologies Base location Harwell or Bristol Grade B Job level 18 Job family Professional services Date 23/10/2017 Reports to Cloud services group

More information

Continuous Processing versus Oracle RAC: An Analyst s Review

Continuous Processing versus Oracle RAC: An Analyst s Review Continuous Processing versus Oracle RAC: An Analyst s Review EXECUTIVE SUMMARY By Dan Kusnetzky, Distinguished Analyst Most organizations have become so totally reliant on information technology solutions

More information

The Real Cost of Conversion to Xpa

The Real Cost of Conversion to Xpa The Real Cost of Conversion to Xpa 10 Forgotten Factors to Consider When Calculating the True Expense of Upgrading from Magic to XPA Go Up Technology Page 1 www.goupte.com Abstract Decision-makers considering

More information

Oracle Forms Modernization Through Automated Migration. A Technical Overview

Oracle Forms Modernization Through Automated Migration. A Technical Overview Oracle Forms Modernization Through Automated Migration A Technical Overview Table of Contents Document Overview... 3 Oracle Forms Modernization... 3 Benefits of Using an Automated Conversion Tool... 3

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 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

Incremental Updates VS Full Reload

Incremental Updates VS Full Reload Incremental Updates VS Full Reload Change Data Capture Minutes VS Hours 1 Table of Contents Executive Summary - 3 Accessing Data from a Variety of Data Sources and Platforms - 4 Approaches to Moving Changed

More information

Stitched Together: Transitioning CMS to a Hierarchical Threaded Framework

Stitched Together: Transitioning CMS to a Hierarchical Threaded Framework Stitched Together: Transitioning CMS to a Hierarchical Threaded Framework CD Jones and E Sexton-Kennedy Fermilab, P.O.Box 500, Batavia, IL 60510-5011, USA E-mail: cdj@fnal.gov, sexton@fnal.gov Abstract.

More information

Improved Database Development using SQL Compare

Improved Database Development using SQL Compare Improved Database Development using SQL Compare By David Atkinson and Brian Harris, Red Gate Software. October 2007 Introduction This white paper surveys several different methodologies of database development,

More information

Optimizing wind farms

Optimizing wind farms Optimizing wind farms We are Uniper Your benefits We are a leading international energy company with operations in more than 40 countries and around 13,000 employees. We combine a balanced portfolio of

More information

How Usability Analyst Training Benefits Individuals and Organizations

How Usability Analyst Training Benefits Individuals and Organizations How Usability Analyst Training Benefits Individuals and Organizations A Conversation with Mary M. Michaels Global Director of Training Human Factors International How Usability Analyst Training Benefits

More information

Software Evolution and Maintenance A Practitioner s Approach

Software Evolution and Maintenance A Practitioner s Approach Software Evolution and Maintenance A Practitioner s Approach Chapter 5 Legacy Information Systems Outline of the Chapter 5.1 General Idea 5.2 Wrapping 5.3 Migration 5.4 Migration Planning 5.5 Migration

More information

Data Model Considerations for Radar Systems

Data Model Considerations for Radar Systems WHITEPAPER Data Model Considerations for Radar Systems Executive Summary The market demands that today s radar systems be designed to keep up with a rapidly changing threat environment, adapt to new technologies,

More information

The Hidden Costs of Free Database Auditing Comparing the total cost of ownership of native database auditing vs. Imperva SecureSphere

The Hidden Costs of Free Database Auditing Comparing the total cost of ownership of native database auditing vs. Imperva SecureSphere Comparing the total cost of ownership of native database auditing vs. Imperva SecureSphere Executive Summary To achieve compliance for regulatory mandates, many organizations turn to the free auditing

More information

Q1) Describe business intelligence system development phases? (6 marks)

Q1) Describe business intelligence system development phases? (6 marks) BUISINESS ANALYTICS AND INTELLIGENCE SOLVED QUESTIONS Q1) Describe business intelligence system development phases? (6 marks) The 4 phases of BI system development are as follow: Analysis phase Design

More information

Managing Exchange Migration with Enterprise Vault

Managing Exchange Migration with Enterprise Vault WHITE PAPER Managing Exchange Migration with Enterprise Abstract: Many organizations today are considering either replacing their legacy mail system, for example GroupWise or ccmail, with Microsoft Exchange

More information

Verification, Testing, and Bugs

Verification, Testing, and Bugs Verification, Testing, and Bugs Ariane 5 Rocket First Launch Failure https://www.youtube.com/watch?v=gp_d8r- 2hwk So What Happened? The sequence of events that led to the destruction of the Ariane 5 was

More information

CA Dynam /T Tape Management for z/vse

CA Dynam /T Tape Management for z/vse PRODUCT SHEET CA Dynam/T Tape Management for z/vse CA Dynam /T Tape Management for z/vse CA Dynam /T Tape Management for z/vse (CA Dynam/T) is a tape library management solution providing a single point

More information

Isaca EXAM - CISM. Certified Information Security Manager. Buy Full Product.

Isaca EXAM - CISM. Certified Information Security Manager. Buy Full Product. Isaca EXAM - CISM Certified Information Security Manager Buy Full Product http://www.examskey.com/cism.html Examskey Isaca CISM exam demo product is here for you to test the quality of the product. This

More information

Microsoft DFS Replication vs. Peer Software s PeerSync & PeerLock

Microsoft DFS Replication vs. Peer Software s PeerSync & PeerLock Microsoft DFS Replication vs. Peer Software s PeerSync & PeerLock Contents.. Why Replication is Important. 2 The Original Purpose for MS DFSR. 2 Best Scenarios for DFSR. 3 When DFSR is Problematic. 4 The

More information

Task Flow Recorder for CICS

Task Flow Recorder for CICS Task Flow Recorder for CICS Manager s Summary Tel. ++1-734-846-0549 ++972-52-664-1157 info@cicsrecorder.com Copyright 2016, by AlgoriNet, Inc. - 1 - TFR On a Nut Shell CICS Task Flow Recorder (TFR) is

More information

IBM Redbook Solution Guide Insert

IBM Redbook Solution Guide Insert IBM Redbook Solution Guide Insert Database Modernization The key to long-term value Adsero Optima (AO) Roadmap What if? You only had to maintain 10-15% of your lines of code yet provide the same functionality

More information

How to Automate A Complete Register. Verification Environment

How to Automate A Complete Register. Verification Environment How to Automate A Complete Register Verification Environment Executive Summary Memory mapped registers provide re-configurability and control to an Intellectual Property Block (IP) or System on Chip design

More information

Data Validation Option Best Practices

Data Validation Option Best Practices Data Validation Option Best Practices 1993-2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise) without

More information

An Honors Thesis (HONRS 499) Thesis Advisor Rui Chen. Ball State University Muncie, Indiana. Expected Date of Graduation

An Honors Thesis (HONRS 499) Thesis Advisor Rui Chen. Ball State University Muncie, Indiana. Expected Date of Graduation The Development of BeatCred.net An Honors Thesis (HONRS 499) by Peter Kaskie Thesis Advisor Rui Chen Ball State University Muncie, Indiana May 2012 Expected Date of Graduation May 2012 Peter Kaskie The

More information

Data Replication Buying Guide

Data Replication Buying Guide Data Replication Buying Guide 1 How to Choose a Data Replication Solution IT professionals are increasingly turning to heterogenous data replication to modernize data while avoiding the costs and risks

More information

WHITEPAPER. Embracing Containers & Microservices for future-proof application modernization

WHITEPAPER. Embracing Containers & Microservices for future-proof application modernization WHITEPAPER Embracing Containers & Microservices for future-proof application modernization The need for application modernization: Legacy applications are typically based on a monolithic design, which

More information

Response to the Validation Panel for the DIT Foundation Programmes

Response to the Validation Panel for the DIT Foundation Programmes Response to the Validation Panel for the DIT Foundation Programmes Condition: The programme should be presented as two separate programmes with separate programme documentation, including programme aims,

More information

Data Virtualization Implementation Methodology and Best Practices

Data Virtualization Implementation Methodology and Best Practices White Paper Data Virtualization Implementation Methodology and Best Practices INTRODUCTION Cisco s proven Data Virtualization Implementation Methodology and Best Practices is compiled from our successful

More information

BECOME A LOAD TESTING ROCK STAR

BECOME A LOAD TESTING ROCK STAR 3 EASY STEPS TO BECOME A LOAD TESTING ROCK STAR Replicate real life conditions to improve application quality Telerik An Introduction Software load testing is generally understood to consist of exercising

More information

EVALUATION AND APPROVAL OF AUDITORS. Deliverable 4.4.3: Design of a governmental Social Responsibility and Quality Certification System

EVALUATION AND APPROVAL OF AUDITORS. Deliverable 4.4.3: Design of a governmental Social Responsibility and Quality Certification System EVALUATION AND APPROVAL OF AUDITORS Deliverable 4.4.3: Design of a governmental Social Responsibility and Quality Certification System 1 TABLE OF CONTENTS 1. Scope and field of Application 3 2. Normative

More information

DIGITAL COMMUNICATIONS GOVERNANCE

DIGITAL COMMUNICATIONS GOVERNANCE UNIVERSITY OF NEBRASKA OMAHA DIGITAL COMMUNICATIONS GOVERNANCE REVISED: MARCH 2016 CONTENTS EXECUTIVE SUMMARY 3 INTRODUCTION 3 I. CORE VALUES 4 1.1 Audience First 4 1.2 Consistent Brand 5 1.3 Accessibility

More information

ITU Workshop. NGN Regulation and Migration Strategies (13-15 th October, 2010)

ITU Workshop. NGN Regulation and Migration Strategies (13-15 th October, 2010) ITU Workshop NGN Regulation and Migration Strategies (13-15 th October, 2010) Lav Gupta, Principal Advisor, Telecom Regulatory Authority of India, New Delhi Phone :+91-11-23216930, Fax: +91-11-23235270

More information

Application generators: a case study

Application generators: a case study Application generators: a case study by JAMES H. WALDROP Hamilton Brothers Oil Company Denver, Colorado ABSTRACT Hamilton Brothers Oil Company recently implemented a complex accounting and finance system.

More information

Using the Network to Optimize a Virtualized Data Center

Using the Network to Optimize a Virtualized Data Center Using the Network to Optimize a Virtualized Data Center Contents Section I: Introduction The Rise of Virtual Computing. 1 Section II: The Role of the Network. 3 Section III: Network Requirements of the

More information

Simplifying IT through Virtualization

Simplifying IT through Virtualization E X E C U T I V E S U M M A R Y G E T T E C H N O L O G Y R I G H T C U S T O M P U B L I S H I N G Microsoft-powered virtualization offers tremendous potential to help IT executives drive innovation while

More information

Concord Fax Network Architecture. White Paper

Concord Fax Network Architecture. White Paper Concord Fax Network Architecture White Paper Page 2 Table of Contents Introduction 3 The 99.99% Uptime Fax Network 4 Reliability and High Availability 5 Security 9 Delivery 14 Network Monitoring 19 About

More information

Fundamental Shift: A LOOK INSIDE THE RISING ROLE OF IT IN PHYSICAL ACCESS CONTROL

Fundamental Shift: A LOOK INSIDE THE RISING ROLE OF IT IN PHYSICAL ACCESS CONTROL Fundamental Shift: A LOOK INSIDE THE RISING ROLE OF IT IN PHYSICAL ACCESS CONTROL Shifting budgets and responsibilities require IT and physical security teams to consider fundamental change in day-to-day

More information

10 Considerations for a Cloud Procurement. March 2017

10 Considerations for a Cloud Procurement. March 2017 10 Considerations for a Cloud Procurement March 2017 2017, Amazon Web Services, Inc. or its affiliates. All rights reserved. Notices This document is provided for informational purposes only. It represents

More information

WHITE PAPER. The Many Different Types of DBAs. Craig Mullins

WHITE PAPER. The Many Different Types of DBAs. Craig Mullins BI/Analytics Applications Databases WHITE PAPER The Many Different Types of DBAs AUTHOR: Craig Mullins ABSTRACT: Although DBAs, at a high level, are tasked with managing and assuring the efficiency of

More information

WHITEPAPER THE EVOLUTION OF APPSEC: FROM WAFS TO AUTONOMOUS APPLICATION PROTECTION

WHITEPAPER THE EVOLUTION OF APPSEC: FROM WAFS TO AUTONOMOUS APPLICATION PROTECTION WHITEPAPER THE EVOLUTION OF APPSEC: FROM WAFS TO AUTONOMOUS APPLICATION PROTECTION 2 Web application firewalls (WAFs) entered the security market at the turn of the century as web apps became increasingly

More information

McAfee Total Protection for Data Loss Prevention

McAfee Total Protection for Data Loss Prevention McAfee Total Protection for Data Loss Prevention Protect data leaks. Stay ahead of threats. Manage with ease. Key Advantages As regulations and corporate standards place increasing demands on IT to ensure

More information

Redesign Accounting and Budget System Using LINQ Framework and Web Service

Redesign Accounting and Budget System Using LINQ Framework and Web Service Redesign Accounting and Budget System Using LINQ Framework and Web Service Rekik Asefa Cybersoft Plc., Addis Ababa, Ethiopia rekikasefa@yahoo.com Mesfin Kifle Department of Computer Science, Addis Ababa

More information

The Other Side Of Innovation

The Other Side Of Innovation The Other Side Of Innovation Presented by: Chris Trimble Professor, Tuck School of Business at Dartmouth 2011: Trimble and and Govindarajan 2011 Trimble and Govindarajan 2011 Trimble and Govindarajan 3

More information

WR2QTP: Semantic Translator of WinRunner Scripts to QTP

WR2QTP: Semantic Translator of WinRunner Scripts to QTP WR2QTP: Semantic Translator of WinRunner Scripts to QTP BACKGROUND Automatic testing of Graphical User Interfaces (GUI) is critical, as software is increasingly becoming web-based and operated through

More information

Discover the Hidden Cost Savings of Cloud Computing

Discover the Hidden Cost Savings of Cloud Computing WHITEPAPER Discover the Hidden Cost Savings of Cloud Computing Transform your entire institution with Jenzabar Cloud Services. By Gus Ortiz Managed Services Program Manager, Principal Consultant Cloud

More information

Shedding Tiers Creating a Simpler, More Manageable Storage Infrastructure

Shedding Tiers Creating a Simpler, More Manageable Storage Infrastructure Shedding Tiers Creating a Simpler, More Manageable Storage Infrastructure By Gary Orenstein, Vice President of Marketing Gear6 [www.gear6.com] Introduction The concept of segmenting data storage repositories

More information

Tutorial 1 Answers. Question 1

Tutorial 1 Answers. Question 1 Tutorial 1 Answers Question 1 Complexity Software in it what is has to do, is often essentially complex. We can think of software which is accidentally complex such as a large scale e-commerce system (simple

More information

VERITAS 2017 TRUTH IN CLOUD REPORT

VERITAS 2017 TRUTH IN CLOUD REPORT WHITE PAPER VERITAS 2017 TRUTH IN CLOUD REPORT The rise of multi-cloud: Combatting misconceptions and realigning data management responsibilities CLOUD-FIRST MENTALITY Today, many organisations are taking

More information

Upgrading Existing Databases Recommendations for Irrigation Districts

Upgrading Existing Databases Recommendations for Irrigation Districts COLLEGE OF AGRICULTURE AND LIFE SCIENCES TR-371 2011 Upgrading Existing Databases Recommendations for Irrigation Districts By: David Flahive, System Analyst and Guy Fipps, P.E., Extension Agricultural

More information

Automating VPN Management

Automating VPN Management Automating VPN Management By Scott Hilton, Vice President Product Management Assured Digital, Inc. Although many network managers, users and executives agree on the benefits of virtual private networking,

More information

CICS VSAM Transparency

CICS VSAM Transparency Joe Gailey Senior IT Specialists Client Technical Specialist for CICS z/os Tools 10 th May 2013 CICS VSAM Transparency AGENDA Business Issue IBM s Solution How CICS VT Works (Deep Dive) Conclusions / Questions

More information

Massive Scalability With InterSystems IRIS Data Platform

Massive Scalability With InterSystems IRIS Data Platform Massive Scalability With InterSystems IRIS Data Platform Introduction Faced with the enormous and ever-growing amounts of data being generated in the world today, software architects need to pay special

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

Cloud Computing. January 2012 CONTENT COMMUNITY CONVERSATION CONVERSION

Cloud Computing. January 2012 CONTENT COMMUNITY CONVERSATION CONVERSION Cloud Computing January 2012 CONTENT COMMUNITY CONVERSATION CONVERSION Purpose and Methodology Survey Sample Field Work December 20, 2011 January 9, 2012 Total Respondents 554 Margin of Error +/- 4.2%

More information

BUSINESS VALUE SPOTLIGHT

BUSINESS VALUE SPOTLIGHT BUSINESS VALUE SPOTLIGHT Improve Performance, Increase User Productivity, and Reduce Costs with Database Archiving: A Case Study of AT&T May 2010 Sponsored by Informatica, Inc. Background AT&T's Wireless

More information

Developing Workstation-Based Client/Server Applications Steve Rabin

Developing Workstation-Based Client/Server Applications Steve Rabin 4-02-30 Developing Workstation-Based Client/Server Applications Steve Rabin Payoff Leveraging existing assets, both code and people, is one of the keys to successfully developing new distributed applications.

More information

SYSPRO s Fluid Interface Design

SYSPRO s Fluid Interface Design SYSPRO s Fluid Interface Design Introduction The world of computer-user interaction has come a long way since the beginning of the Graphical User Interface, but still most application interfaces are not

More information

Legacy Systems. Older software systems that remain vital to an organisation. Legacy systems. Legacy system replacement

Legacy Systems. Older software systems that remain vital to an organisation. Legacy systems. Legacy system replacement Legacy Systems Older software systems that remain vital to an organisation Ian Sommerville 1995/2000 (Modified by Spiros Mancoridis 1999) Software Engineering, 6th edition. Chapters 26,27,28 Slide 1 Legacy

More information