Transitioning from Micro Focus COBOL to Dell Enterprise COBOL

Size: px
Start display at page:

Download "Transitioning from Micro Focus COBOL to Dell Enterprise COBOL"

Transcription

1 Transitioning from Micro Focus COBOL to Dell Enterprise COBOL Solution overview November 2013 Dell delivers comprehensive COBOL application development, maintenance and modernization technologies that optimize IT resources, improve business performance and dramatically lower cost. Organizations are converting applications from Micro Focus COBOL platforms, such as Micro Focus Server Express and Net Express, to Dell technology for many reasons including: To gain the advantage of a COBOL development and Java deployment model, without rewriting or retraining To improve return on investment (ROI) and dramatically lower COBOL licensing fees To deploy to multiple platforms using a single set of source code To natively integrate with leading web and application server technologies To support a wide range of data access options and capabilities

2 Table of contents Introduction... 1 Dell Enterprise COBOL...3 Phased transition option...3 Migration process overview...3 Compiler options... 4 Command-line options... 4 Language syntax...5 Runtime configuration variables (properties)...5 Environment variables...5 Accommodating variations...5 Data access... 6 Sequential files... 6 Relative files... 6 Indexed files... 6 Relational databases... 6 External file systems... 6 File status codes... 6 User interfaces...7 Interoperability...7 Library routines...7 Phased transitions... 8 For more information

3 Dell provides compiler and runtime compatibility settings to keep the overall level of effort required for conversion to a minimum. Introduction Dell Enterprise COBOL Dell Enterprise COBOL (formerly vcobol Enterprise) provides a powerful environment for you to develop and deploy your businesscritical COBOL applications on open systems. Legacy COBOL dialect support enables you to migrate existing interactive and batch environments, as well as stand-alone application deployments, with little or no code change. Dell Enterprise COBOL includes: Powerful COBOL compiler: Produce optimized object code that you can deploy on a variety of platforms, such as Linux and Microsoft Windows, to take full advantage of 32- or 64-bit deployments Streamlined, portable runtime environment: Improve performance in many common enterprise scenarios with a runtime environment designed to minimize overhead and provide optimized access to data Flexible, visual studio-based integrated development environment: Provide your COBOL programmers with a single, flexible environment for all development tasks (design, coding, testing and debugging) in a widely accepted and extensible framework Wide range of data access capabilities: Simplify transitions to the Dell Enterprise COBOL platform with support for all common COBOL file organizations, record types and relational databases Phased transition option With Dell, organizations have the choice of either migrating an entire application codebase at once or taking a phased approach, which sets the pace of a conversion according to resource availability and desired timeframe. During a phased migration, an organization s development team can continue to maintain an application with the Micro Focus COBOL compiler, while simultaneously working on the same set of source code to compile and execute with the Dell Enterprise COBOL compiler. Dell provides compiler and runtime compatibility settings to keep the overall level of effort required for conversion to a minimum. Migration process overview The key steps involved in a conversion to the Dell Enterprise COBOL platform are: 1. Set up Dell Enterprise COBOL 2. Recompile the application; review compiler output, and make minor syntax modifications where necessary 3. Migrate data, if necessary, using Dell-supplied conversion utilities 4. Set up the target platform runtime environment including runtime properties and data connections 5. Integrate with external software libraries and routines, such as those written in the C programming language In order to rapidly convert Micro Focus COBOL programs and data files to Dell Enterprise COBOL, your organization needs a better understanding of the elements that make a successful conversion including: Compiler options, data access, user interfaces, interoperability requirements and the phased transition approach. 3

4 Compiler options Dell Enterprise COBOL includes a 100 percent portable COBOL compiler, which supports the latest ANSI standards as well as common legacy dialects. Developers do not need to be familiar with the Java programming language in order to work with the Dell Enterprise COBOL compiler, as all development and debugging is done in the COBOL language. The Dell Enterprise COBOL compiler can operate as a command-line utility, just like Micro Focus COBOL. Existing Micro Focus build scripts can be used in a Dell Enterprise COBOL environment by changing relevant compiler executable names and command-line options. Dell Enterprise COBOL offers a high degree of compatibility with Micro Focus COBOL syntax; and, for those parts of an application that rely on Micro Focusspecific semantics, compatibility options for compilation and runtime behavior are provided. Command-line options Dell Enterprise COBOL and Micro Focus COBOL use significantly different conventions for specifying compiler options at the command line and in application source code. Dell Enterprise COBOL uses standard command-line style options, whereas Micro Focus COBOL uses its own compiler directive style. With Dell Enterprise COBOL, commandline options start with a hyphen, followed by an abbreviation. In some cases, the abbreviation is followed by an equal sign and then a value. These command-line style options can be specified in a file using the vcobol. compiler.options property. For example, to provide compatibility with the mainframe behavior of the PERFORM statement such as on OS/VS COBOL: Micro Focus COBOL requires the compiler directive PERFORM-TYPE OSVS Dell Enterprise COBOL requires the compiler command-line option -pt2 For another example, to specify a list of directories for the compiler to search for copy files: Micro Focus COBOL requires the compiler directive COPYPATH list-of-directories Dell Enterprise COBOL requires the compiler command-line option -sp=list-of-directories Tip: To specify the directories with an environment variable named COBCPY, use -sp=$cobcpy on Linux and -sp=%cobcpy% on Windows. Dell Enterprise COBOL uses standard command-line style options, whereas Micro Focus COBOL uses its own compiler directive style. 4

5 The Dell support team has considerable experience migrating from the Micro Focus platform. Language syntax Small code changes may need to be made to items such as inline comments. For example: 01 WS-VAR PIC X. // Micro Focus inline comment 01 WS-VAR PIC X. Dell Enterprise COBOL inline comment Runtime configuration variables (properties) At runtime, there are a number of Dell Enterprise COBOL properties that affect application behavior. These properties can be adjusted to obtain the same behavior as Micro Focus COBOL. For example, a default behavior of Micro Focus COBOL is to strip trailing spaces from line-sequential file records during WRITE operations. The same behavior can be obtained in a Dell Enterprise COBOL environment by setting the runtime property to vcobol.file.strip_ trailing_spaces=true. Accommodating variations The Dell support team has considerable experience migrating from the Micro Focus platform. In areas where Dell Enterprise COBOL does not support specific Micro Focus COBOL syntax, the desired behavior can be obtained using recommended changes to the syntax. In addition, the effect of a particular Micro Focus compiler directive can be obtained using a recommended Dell Enterprise COBOL compiler option or runtime setting. The following list maps commonly used Micro Focus directives to the appropriate Dell Enterprise COBOL alternative: Micro Focus COBOL directive Dell Enterprise COBOL alternative ANIM APOST -d -apost Another example is accommodating the Micro Focus RTS Switch N, which is default behavior in Micro Focus COBOL for including computational data in line-sequential files. This behavior is obtained with Dell Enterprise COBOL by setting the property to vcobol.file. linesequential=com.dell.vcobol.runtime. base.io.dynamiclseqmf_n. Environment variables With both Micro Focus COBOL and Dell Enterprise COBOL, the same programming syntax is used to get and set environment variables. However, there are differences in behavior if non- COBOL software is involved. Please contact a Dell Services representative for more information. ASSIGN(EXTERNAL) COPYEXT(cpy) DEFAULTBYTE(00) IBMCOMP PERFORM-TYPE(OSVS) REMOVE(NULL) NOTRUNC -cax -ce=cpy -dv=0 -dcmi -pt2 -rw=null -dz 5

6 Data access The innovative and modular design approach supports a wide range of data access options. All common COBOL file organizations and record types are supported by Dell Enterprise COBOL including indexed, relative, binary sequential and line sequential, with fixed and variable length records. Embedded SQL (ESQL) is supported either through database-specific precompilers, such as Oracle Pro*COBOL and DB2 PRECOMPILE, or through Java Database Connectivity (JDBC). In the latter case, no ESQL precompiler is required. To support JDBC, the Dell Enterprise COBOL compiler has a built-in ESQL compiler that translates EXEC SQL statements into calls to JDBC. No separate precompilation step is required. Most data files will need to be converted to an equivalent Dell format before they can be used. A data migration utility is included with the Dell Enterprise COBOL runtime environment. Sequential files Micro Focus COBOL and Dell Enterprise COBOL employ the same techniques to determine record lengths, so neither fixed-length nor variable-length sequential files require conversion. Relative files Relative files can be converted with a utility provided by Dell support. Indexed files Indexed files can be easily converted to Dell JISAM, a 100 percent Java-based indexed sequential access method (ISAM) file system. Dell JISAM includes a file-management utility, JUTIL, that has an option for automatically migrating Micro Focus indexed data files into the Dell JISAM file format. Relational databases No data migration is required for relational databases when moving to a Dell Enterprise COBOL platform current databases can continue to be accessed through existing interfaces without COBOL code changes. Dell Enterprise COBOL supports access to any database that offers a JDBC driver or a COBOL/ESQL precompiler. Databases can be accessed through standard COBOL file I/O (input/output) statements or by including embedded SQL in the COBOL source code. External file systems Dell Enterprise COBOL can be configured to use external file systems that contain indexed, relative or sequential files via an EXTFH (external file handler) interface. Developers can set the property to vcobol.extfh. libname to specify the name of the EXTFH library. I/O statements remain the same in the COBOL source, whether using native or EXTFH file system libraries. File status codes To further simplify the transition to Dell Enterprise COBOL, developers can configure the runtime to generate the same file status codes as those used by Micro Focus COBOL. This is accomplished by setting the property to vcobol.file.status= MF. 6

7 User interfaces Because Dell Enterprise COBOL was designed to support back-end transaction processing, the user interface commonly associated with a Dell Enterprise COBOL environment is typically handled by external software such as a transaction processing monitor (e.g., Dell Transaction Processing Environment software, as part of our mainframe re-hosting solution), web or Java server technology, or a third-party screen package. The user interface may also be written in Microsoft Visual Basic, C# (or other Microsoft.NET language). Or the user interface could be a C routine interfacing with a terminal. In all of these cases, the user interface is external to the COBOL applications themselves and would be supported as is, without any migration requirements on the Dell Enterprise COBOL platform. Interoperability Programs compiled with Dell Enterprise COBOL can call external language routines without the need for code changes. Runtime framework properties are used to point to the external libraries. Library routines Dell Enterprise COBOL implements many library routines that provide equivalent functionality to the Micro Focus call-by-name routines (CBL_*). Where necessary, the Dell support team can write or assist in writing required subroutines, C routines or Java programs using the equivalent Dell Enterprise COBOL syntax. The table in the right column identifies Micro Focus library routines that are supported by Dell Enterprise COBOL: Micro Focus library routines that are supported by Dell Enterprise COBOL CBL_ALLOC_MEM CBL_AND CBL_CHANGE_DIR CBL_CHECK_FILE_EXIST CBL_CLOSE_FILE CBL_COPY_FILE CBL_CREATE_DIR CBL_CREATE_FILE CBL_DELETE_DIR CBL_DELETE_FILE CBL_DIR_SCAN_END CBL_DIR_SCAN_READ CBL_DIR_SCAN_START CBL_ERROR_PROC CBL_EXIT_PROC CBL_FLUSH_FILE CBL_FREE_MEM CBL_FREE_RECORD_LOCK CBL_GET_RECORD_LOCK CBL_NOT CBL_OPEN_FILE CBL_OR CBL_READ_FILE CBL_RENAME_FILE CBL_TEST_RECORD_LOCK CBL_WRITE_FILE CBL_XOR 7

8 Phased transitions With Dell Enterprise COBOL compiler and runtime compatibility settings, the overall effort required to move from Micro Focus COBOL can be kept to a minimum. Some organizations still elect to undergo a phased migration to further minimize business disruption when migrating to Dell Enterprise COBOL. During a phased transition, developers continue to maintain an application with the Micro Focus COBOL compiler and to support current customers under the Micro Focus platform, while simultaneously working on the same set of source code in Dell Enterprise COBOL. If specific features are desired for use with the Dell Enterprise COBOL platform, conditional compilation options are employed and a check is performed at runtime to determine which subprogram to call. Some of the Dell Enterprise COBOL features that make phased transition possible include: The compiler operates as a commandline utility, like Micro Focus COBOL. So, current build scripts can be used by changing only the compiler executable name and command-line options. Dell Enterprise COBOL compatibility options for proprietary Micro Focus brand features. Dell Enterprise COBOL compiler support for conditional compilation with Micro Focus style syntax, allowing the preservation of current COBOL syntax and behavior. Runtime environment support for checking at runtime to determine whether the execution environment is set for Dell Enterprise COBOL or Micro Focus COBOL. This ability to do dual coding within the same program allows you have a single set of source code for your application, even as you convert. Dell Enterprise COBOL is stricter in some areas about ANSI COBOL standards than other compilers and might, therefore, catch new programming errors. Once an application s standards compliance has been improved, the code will compile cleanly with Micro Focus COBOL as well as with Dell Enterprise COBOL. Conclusion Our innovative COBOL technology is highly compatible with today s common COBOL dialects, enabling quick and efficient migration from Micro Focus COBOL. Whether your organization is focused on evolving existing applications through service-oriented architecture (SOA), migrating from mainframes to open systems, improving quality and distribution processes or simply improving the bottom line, Dell Enterprise COBOL can increase business productivity and operational effectiveness. When considering a move to Dell Enterprise COBOL, our support team can help assess the level of effort required. If desired, Dell also offers services to build a limited representative prototype of an application running in a Dell Enterprise COBOL environment. This exercise includes a thorough analysis process that helps determine how straightforward the transition to Dell Enterprise COBOL will be for an organization. For more information on migrating to Dell Enterprise COBOL, please visit us online at Dell.com/cobol or contact your Dell representative. Scan or click this code to learn how Dell Services can help your organization. This product or document is protected by copyright and distributed under licenses restricting its use, copying, distribution and recompilation. No part of this product or document may be reproduced in any form by any means without prior written authorization of Dell and its licensors, if any. Windows and Visual Studio are registered trademarks of Microsoft Corporation. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners Dell Inc. One Dell Way, Round Rock, Texas 78682, USA. All rights reserved. November 2013 D351 - Micro Focus COBOL to Dell Enterprise COBOL.indd Rev. 1.2

Migrating from Micro Focus COBOL to iscobol Evolve

Migrating from Micro Focus COBOL to iscobol Evolve Evolution, without revolution Solution Overview Migrating from Micro Focus COBOL to iscobol Evolve 2017 Veryant. All rights reserved. Table of contents 3. Introduction 4. Introduction to iscobol Evolve

More information

CBL Subroutines User's Guide

CBL Subroutines User's Guide FUJITSU Software NetCOBOL V11.1 CBL Subroutines User's Guide Windows(64) B1WD-3297-02ENZ0(00) February 2017 Preface About CBL Routines The CBL routines explained in this manual are functionally compatible

More information

Solution overview VISUAL COBOL BUSINESS CHALLENGE SOLUTION OVERVIEW BUSINESS BENEFIT

Solution overview VISUAL COBOL BUSINESS CHALLENGE SOLUTION OVERVIEW BUSINESS BENEFIT BUSINESS CHALLENGE There is an increasing demand from users of business software for easier to use applications which integrate with other business systems. As a result IT organizations are being asked

More information

white paper OCDS to Server Express Product Evolution Table of Contents white paper

white paper OCDS to Server Express Product Evolution Table of Contents white paper white paper white paper OCDS to Server Express Product Evolution Table of Contents Why move?... 2 OCDS and the RTS... 2 Evolution of the Platform... 2 Micro Focus Server Express... 3 The Deployment Environment

More information

COBOL-IT Compiler Suite

COBOL-IT Compiler Suite COBOL-IT Compiler Suite Enterprise Edition COBOL-IT Compiler Suite Enterprise Edition is an Enterprise COBOL Compiler Suite that is highly adapted to the needs of Enterprises with Mission Critical COBOL

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

Life After Migration

Life After Migration Life After Migration Migration Solutions for HP e3000 Applications Chuck Edgin Solutions Architect Acucorp, Inc. 2003 Acucorp, Inc. All Rights Reserved. Agenda Introduction to Acucorp Migration solution

More information

COBOL and the HP3000. Discussion led by Stephen Hjerpe and Jeanette Nutsford. acucorp

COBOL and the HP3000. Discussion led by Stephen Hjerpe and Jeanette Nutsford. acucorp COBOL and the HP3000 Discussion led by Stephen Hjerpe and Jeanette Nutsford Agenda Considerations Staying with MPE COBOL Conversion - Migration strategies Complimentary technologies Questions and Answers

More information

Migrating from ACUCOBOL-GT to iscobol Evolve

Migrating from ACUCOBOL-GT to iscobol Evolve Evolution, without revolution Quick Reference Guide Migrating from ACUCOBOL-GT to iscobol Evolve 2017 Veryant. All rights reserved. Table of contents 3. Introduction 4. Introduction to iscobol Evolve 5.

More information

1. Which programming language is used in approximately 80 percent of legacy mainframe applications?

1. Which programming language is used in approximately 80 percent of legacy mainframe applications? Volume: 59 Questions 1. Which programming language is used in approximately 80 percent of legacy mainframe applications? A. Visual Basic B. C/C++ C. COBOL D. Java Answer: C 2. An enterprise customer's

More information

Micro Focus Net Express

Micro Focus Net Express data sheet Micro Focus Net Express Micro Focus Net Express provides a complete environment for quickly building and modernizing COBOL enterprise components and business applications for client/server platforms

More information

ORACLE MESSAGEQ ORACLE DATA SHEET KEY FEATURES AND BENEFITS

ORACLE MESSAGEQ ORACLE DATA SHEET KEY FEATURES AND BENEFITS ORACLE MESSAGEQ KEY FEATURES AND BENEFITS With Oracle MessageQ, you can translate your inventory of diverse applications into a strategic advantage. FEATURES Interoperability with IBM platforms via TCP/IP

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

COBOL-IT Developer Studio

COBOL-IT Developer Studio COBOL-IT Developer Studio COBOL-IT Developer Studio is COBOL-IT s Integrated Development Environment. The Developer Studio allows you to develop, debug and maintain your legacy COBOL applications in a

More information

iscobol TM Evolve iscobol Evolve 2018 Release 1 Overview

iscobol TM Evolve iscobol Evolve 2018 Release 1 Overview iscobol TM Evolve iscobol Evolve 2018 Release 1 Overview 2018 Veryant. All rights reserved. Copyright 2018 Veryant LLC. All rights reserved. This product or document is protected by copyright and distributed

More information

MetaSuite : Advanced Data Integration And Extraction Software

MetaSuite : Advanced Data Integration And Extraction Software MetaSuite Technical White Paper March, 2000 A Minerva SoftCare White Paper MetaSuite : Advanced Data Integration And Extraction Software WP-FPA-101998 Content CAPITALIZE ON YOUR VALUABLE LEGACY DATA 3

More information

Oracle Database. Products Available on the Oracle Database Examples Media. Oracle Database Examples. Examples Installation Guide 11g Release 1 (11.

Oracle Database. Products Available on the Oracle Database Examples Media. Oracle Database Examples. Examples Installation Guide 11g Release 1 (11. Oracle Database Examples Installation Guide 11g Release 1 (11.1) E10402-03 August 2008 This document describes how to install and configure the products available on the Oracle Database Examples media.

More information

NTT DATA Mainframe Re-hosting Development Environment

NTT DATA Mainframe Re-hosting Development Environment NTT DATA Mainframe Re-hosting Development Environment NTT DATA welcomed Dell Services into the family in 2016. Together, we offer one of the industry s most comprehensive services portfolios designed to

More information

About these Release Notes. Documentation Accessibility. New Features in Pro*COBOL

About these Release Notes. Documentation Accessibility. New Features in Pro*COBOL Pro*COBOL Release Notes 12c Release 1 (12.1) E18407-06 April 2013 About these Release Notes This document contains important information about Pro*COBOL 12c Release 1 (12.1). It contains the following

More information

About these Release Notes. This document contains important information about Pro*COBOL 12c Release 2 (12.2).

About these Release Notes. This document contains important information about Pro*COBOL 12c Release 2 (12.2). Pro*COBOL Release Notes 12c Release 2 (12.2) E85817-01 May 2017 Release Notes About these Release Notes This document contains important information about Pro*COBOL 12c Release 2 (12.2). It contains the

More information

iscobol TM Evolve iscobol Evolve 2013 Release 2 Overview

iscobol TM Evolve iscobol Evolve 2013 Release 2 Overview iscobol TM Evolve iscobol Evolve 2013 Release 2 Overview 2013 Veryant. All rights reserved. Copyright 2013 Veryant LLC. All rights reserved. This product or document is protected by copyright and distributed

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

What s new in Mainframe Express 3.0

What s new in Mainframe Express 3.0 What s new in Mainframe Express 3.0 TABLE OF CONTENTS Introduction 3 1 Mainframe Compatibility 4 1.1 Enterprise COBOL for z/os 4 1.2 DB2 4 1.3 IMS 5 1.4 CICS 5 1.5 JCL Support 5 2 Testing Enhancements

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

Brochure. Visual COBOL. Visual COBOL

Brochure. Visual COBOL. Visual COBOL Brochure Brochure Business Challenge There is an increasing demand from users of business software for easier to use applications which flexibly integrate with other business systems. As a result IT organizations

More information

DB2. Developing SQL and External Routines. DB2 Version 9 SC

DB2. Developing SQL and External Routines. DB2 Version 9 SC DB2 DB2 Version 9 for Linux, UNIX, and Windows Developing SQL and External Routines SC10-4373-00 DB2 DB2 Version 9 for Linux, UNIX, and Windows Developing SQL and External Routines SC10-4373-00 Before

More information

Application Compatibility Guide

Application Compatibility Guide Application Compatibility Guide Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2018. All rights reserved. MICRO FOCUS, the Micro

More information

ORACLE WEBLOGIC SERVER 10g R3 ENTERPRISE EDITION

ORACLE WEBLOGIC SERVER 10g R3 ENTERPRISE EDITION ORACLE WEBLOGIC SERVER 10g R3 ENTERPRISE EDITION KEY FEATURES FEATURES High performance clustering and failover capabilities Low-overhead Java application monitoring and diagnostics Flexible download and

More information

Relativity Designer 2.2

Relativity Designer 2.2 Relativity Designer 2.2 Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017. All rights reserved. MICRO FOCUS, the Micro Focus

More information

Relativity Data Server 2.2

Relativity Data Server 2.2 Relativity Data Server 2.2 Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017. All rights reserved. MICRO FOCUS, the Micro

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

Protecting Your Investment in Java SE

Protecting Your Investment in Java SE Software platform maintenance and patching is one of the greatest challenges of managing business critical applications. Oracle Java SE Subscription combines license and support into a simple subscription

More information

What s New in Studio and Server Enterprise Edition 6.0?

What s New in Studio and Server Enterprise Edition 6.0? What s New What s New in Studio and Server Enterprise Edition 6.0? Micro Focus Studio Enterprise Edition provides a contemporary analysis and development suite for migrating applications from traditional

More information

Relativity for Windows Workstations 2.2

Relativity for Windows Workstations 2.2 Relativity for Windows Workstations 2.2 Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017. All rights reserved. MICRO FOCUS,

More information

Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX

Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX Duration: 5 Days US Price: $2795 UK Price: 1,995 *Prices are subject to VAT CA Price: CDN$3,275 *Prices are subject

More information

NTT DATA Mainframe Re-hosting Development Environment

NTT DATA Mainframe Re-hosting Development Environment WHITE PAPER APPLICATION SERVICES NTT DATA Mainframe Re-hosting Development Environment JUNE 2018 2018 NTT DATA, Inc. All rights reserved. NTT DATA Services White Paper NTT DATA Mainframe Re-hosting Development

More information

Application Migration with X-Analysis

Application Migration with X-Analysis MANAGEMENT OVERVIEW A GUIDE TO THE BENEFITS OF USING APPLICATION MIGRATION Application Migration with X-Analysis Databorough Ltd. 66 York Road Weybridge UK info@databorough.com Phone +44 (0)1932 848564

More information

About these Release Notes

About these Release Notes Pro*COBOL Release Notes 18c E84345-01 February 2018 Release Notes About these Release Notes This document contains important information about Pro*COBOL release 18c, version 18.1. It contains the following

More information

COBOL for AIX, Version 4.1

COBOL for AIX, Version 4.1 software Application development for today s changing marketplace COBOL for AIX, Version 4.1 To remain competitive, you need a complete business strategy to help you modernize, integrate, and manage existing

More information

IBM WebSphere Message Broker with Rules and Formatter Extension for z/os, Version 6.0

IBM WebSphere Message Broker with Rules and Formatter Extension for z/os, Version 6.0 Enhancing the operation of your advanced enterprise service bus IBM Rules and Formatter Extension for z/os, Version 6.0 Highlights Routes, transforms and Offers a robust, scalable and customizes virtually

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

COMP 3400 Mainframe Administration 1

COMP 3400 Mainframe Administration 1 COMP 3400 Mainframe Administration 1 Christian Grothoff christian@grothoff.org http://grothoff.org/christian/ 1 These slides are based in part on materials provided by IBM s Academic Initiative. 1 Today

More information

Reducing Security Administration Time by 60 percent for More Efficient City Government with Symantec and Novacoast

Reducing Security Administration Time by 60 percent for More Efficient City Government with Symantec and Novacoast City of Aurora Reducing Security Administration Time by 60 percent for More Efficient City Government with Symantec and Novacoast Fending off viruses and other malware was straining IT resources at the

More information

Using OS Isolation Layers for Two-Step Migration

Using OS Isolation Layers for Two-Step Migration Using OS Isolation Layers for Two-Step Migration Janardhanan PS Systems Technology & Software Division Hewlett Packard Company [Contact: janardh@india.hp.com] Agenda Background Migration Approaches Two

More information

Fast Track Model Based Design and Development with Oracle9i Designer. An Oracle White Paper August 2002

Fast Track Model Based Design and Development with Oracle9i Designer. An Oracle White Paper August 2002 Fast Track Model Based Design and Development with Oracle9i Designer An Oracle White Paper August 2002 Fast Track Model Based Design and Development with Oracle9i Designer Executive Overivew... 3 Introduction...

More information

Interoperable Cloud Storage with the CDMI Standard. Mark Carlson, SNIA TC and Oracle Co-Chair, SNIA Cloud Storage TWG

Interoperable Cloud Storage with the CDMI Standard. Mark Carlson, SNIA TC and Oracle Co-Chair, SNIA Cloud Storage TWG Interoperable Cloud Storage with the CDMI Standard Mark Carlson, SNIA TC and Oracle Co-Chair, SNIA Cloud Storage TWG SNIA Legal Notice The material contained in this tutorial is copyrighted by the SNIA.

More information

The Value of Migrating from Cisco Tidal Horizon to Cisco Process Orchestrator

The Value of Migrating from Cisco Tidal Horizon to Cisco Process Orchestrator White Paper The Value of Migrating from Cisco Tidal Horizon to Cisco Process Orchestrator Migrating from Cisco Tidal Horizon for SAP to Cisco Process Orchestrator can help you reduce total cost of ownership

More information

CA IDMS Server. Release Notes. r17

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

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

Oracle GoldenGate for Big Data

Oracle GoldenGate for Big Data Oracle GoldenGate for Big Data The Oracle GoldenGate for Big Data 12c product streams transactional data into big data systems in real time, without impacting the performance of source systems. It streamlines

More information

FIVE BEST PRACTICES FOR ENSURING A SUCCESSFUL SQL SERVER MIGRATION

FIVE BEST PRACTICES FOR ENSURING A SUCCESSFUL SQL SERVER MIGRATION FIVE BEST PRACTICES FOR ENSURING A SUCCESSFUL SQL SERVER MIGRATION The process of planning and executing SQL Server migrations can be complex and risk-prone. This is a case where the right approach and

More information

Developing Java TM 2 Platform, Enterprise Edition (J2EE TM ) Compatible Applications Roles-based Training for Rapid Implementation

Developing Java TM 2 Platform, Enterprise Edition (J2EE TM ) Compatible Applications Roles-based Training for Rapid Implementation Developing Java TM 2 Platform, Enterprise Edition (J2EE TM ) Compatible Applications Roles-based Training for Rapid Implementation By the Sun Educational Services Java Technology Team January, 2001 Copyright

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Planning an Installation of Oracle Fusion Middleware 12c (12.2.1.2) E76887-02 November 2016 Documentation for installers and system administrators that describes how to plan and

More information

Database Connectors Net Express/Server Express 5.1 Update 14. Release Notes

Database Connectors Net Express/Server Express 5.1 Update 14. Release Notes Database Connectors Net Express/Server Express 5.1 Update 14 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017.

More information

ORACLE SERVICES FOR APPLICATION MIGRATIONS TO ORACLE HARDWARE INFRASTRUCTURES

ORACLE SERVICES FOR APPLICATION MIGRATIONS TO ORACLE HARDWARE INFRASTRUCTURES ORACLE SERVICES FOR APPLICATION MIGRATIONS TO ORACLE HARDWARE INFRASTRUCTURES SERVICE, SUPPORT AND EXPERT GUIDANCE FOR THE MIGRATION AND IMPLEMENTATION OF YOUR ORACLE APPLICATIONS ON ORACLE INFRASTRUCTURE

More information

Converting Informix 4GL Applications to Informix Genero

Converting Informix 4GL Applications to Informix Genero Converting Informix 4GL Applications to Informix Genero Why Convert? Your Informix 4GL applications are fundamental to your business; too important to disrupt, too costly to rewrite and packaged applications

More information

Improve Data Integration with Changed Data Capture. An Oracle Data Integrator Technical Brief Updated December 2006

Improve Data Integration with Changed Data Capture. An Oracle Data Integrator Technical Brief Updated December 2006 Improve Data Integration with Changed Data Capture An Oracle Data Integrator Technical Brief Updated December 2006 Improve Data Integration with Changed Data Capture: An Oracle Data Integrator Technical

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

SQL-CMA SQL*XT for ORACLE

SQL-CMA SQL*XT for ORACLE Database Products SQL-CMA SQL*XT for ORACLE GCOS 7 SQL Client Mode Access User's Guide GCOS 7 47 A2 01EL Rev 00 Database Products SQL-CMA SQL*XT for ORACLE GCOS 7 SQL Client Mode Access User's Guide GCOS

More information

Relativity Data Server

Relativity Data Server Relativity Data Server Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2015. All rights reserved. MICRO FOCUS, the Micro Focus

More information

Siebel Installation Guide for Microsoft Windows

Siebel Installation Guide for Microsoft Windows Siebel Installation Guide for Microsoft Windows Siebel 2018 (Applies to Siebel CRM Updates 18.4 through 18.9) September 2018 Copyright 2005, 2018 Oracle and/or its affiliates. All rights reserved. This

More information

Packaging for Websphere Development Studio was changed with V6R1.

Packaging for Websphere Development Studio was changed with V6R1. Packaging for Websphere Development Studio was changed with V6R1. Websphere Development Studio was divided into three features: ILE Compilers Heritage Compilers (OPM) ADTS Websphere Development Studio

More information

Database Connectors Net Express/Server Express 5.1 Update 16. Release Notes

Database Connectors Net Express/Server Express 5.1 Update 16. Release Notes Database Connectors Net Express/Server Express 5.1 Update 16 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2018.

More information

enterprise product suite 2.2.2

enterprise product suite 2.2.2 enterprise product suite 2.2.2 WHAT S NEW WHAT S NEW IN THE ENTERPRISE PRODUCT SUITE VERSION 2.2.2 This What s New document covers new features and functions in the latest release of the Micro Focus Product

More information

Creating Applications Using Java and Micro Focus COBOL. Part 2 The COP Framework

Creating Applications Using Java and Micro Focus COBOL. Part 2 The COP Framework Creating Applications Using Java and Micro Focus COBOL Part 2 The COP Framework Abstract This is the second in a series of papers that examine how Micro Focus tools enable you to effectively use Java and

More information

Micro Focus Studio Enterprise Edition

Micro Focus Studio Enterprise Edition product review Micro Focus Studio Enterprise Edition Micro Focus Studio Enterprise Edition is a contemporary development suite for migrating applications from traditional mainframe environments and modernizing

More information

Creating Enterprise and WorkGroup Applications with 4D ODBC

Creating Enterprise and WorkGroup Applications with 4D ODBC Creating Enterprise and WorkGroup Applications with 4D ODBC Page 1 EXECUTIVE SUMMARY 4D ODBC is an application development tool specifically designed to address the unique requirements of the client/server

More information

IBM. Data Sheet. Enterprise COBOL for z/os. Version 6.2

IBM. Data Sheet. Enterprise COBOL for z/os. Version 6.2 Enterprise COBOL for z/os IBM Data Sheet Version 6.2 Enterprise COBOL for z/os IBM Data Sheet Version 6.2 Third edition (January 2018) This edition applies to Version 6 Release 2 of IBM Enterprise COBOL

More information

Features and Benefits

Features and Benefits AUTODESK MAPGUIDE ENTERPRISE 2010 Features and Benefits Extend the reach and value of your spatial information using Autodesk MapGuide Enterprise 2010 software. Access design and spatial data from a variety

More information

Micro Focus Developer Kit

Micro Focus Developer Kit data sheet Micro Focus Developer Kit Leverage existing host applications in creating new business solutions with our comprehensive development tools The Micro Focus Developer Kit is a comprehensive set

More information

Scope Use this guide to migrate your P6 EPPM schema to a P6 Professional schema or your P6 Professional schema to a P6 EPPM schema.

Scope Use this guide to migrate your P6 EPPM schema to a P6 Professional schema or your P6 Professional schema to a P6 EPPM schema. P6 EPPM and P6 Professional Schema Migration Guide 16 R1 March 2016 Contents About This Guide... 5 About Migrating Database Schema... 5 Prerequisites for Schema Migration... 6 Migrating P6 EPPM Schema

More information

Empowering DBA's with IBM Data Studio. Deb Jenson, Data Studio Product Manager,

Empowering DBA's with IBM Data Studio. Deb Jenson, Data Studio Product Manager, Empowering DBA's with IBM Data Studio Deb Jenson, Data Studio Product Manager, dejenson@us.ibm.com Disclaimer Copyright IBM Corporation [current year]. All rights reserved. U.S. Government Users Restricted

More information

IBM Rational Business Developer (RBD) is a development environment that

IBM Rational Business Developer (RBD) is a development environment that C H A P T E R1 Introduction IBM Rational Business Developer (RBD) is a development environment that helps programmers write business applications quickly. An organization uses RBD to meet the following

More information

Creating Applications Using Java and Micro Focus COBOL

Creating Applications Using Java and Micro Focus COBOL Creating Applications Using Java and Micro Focus COBOL Part 3 - The Micro Focus Enterprise Server A demonstration application has been created to accompany this paper. This demonstration shows how Net

More information

Examples Installation Guide

Examples Installation Guide Oracle Database Examples Installation Guide 12c Release 2 (12.2) E85784-01 May 2017 Examples Installation Guide This document describes how to install and configure the products available on the Oracle

More information

An Oracle White Paper October Release Notes - V Oracle Utilities Application Framework

An Oracle White Paper October Release Notes - V Oracle Utilities Application Framework An Oracle White Paper October 2012 Release Notes - V4.2.0.0.0 Oracle Utilities Application Framework Introduction... 2 Disclaimer... 2 Deprecation of Functionality... 2 New or Changed Features... 4 Native

More information

The information contained in this manual is relevant to end-users, application programmers and system administrators.

The information contained in this manual is relevant to end-users, application programmers and system administrators. August 2002 2002 Preface Purpose This manual describes the GCOS 7 SQL CMA (Client Mode Access) product. This product is intended for anyone who wishes to perform networking operations with databases from

More information

TeleUSE. User Interface Management System. Aonix. for Windows. Product Overview

TeleUSE. User Interface Management System. Aonix. for Windows. Product Overview Product Overview TeleUSE for Windows User Interface Management System TeleUSE User Interface Management System World-class Graphical User Interface Management System development toolset Common toolset

More information

Advanced ODBC and JDBC Access to Salesforce Data

Advanced ODBC and JDBC Access to Salesforce Data Advanced ODBC and JDBC Access to Salesforce Data DATA SHEET FEATURES BENEFITS Use significantly less memory to do more work Expose Salesforce data to a full spectrum of custom and commercial apps Secure

More information

DB2 for z/os: Programmer Essentials for Designing, Building and Tuning

DB2 for z/os: Programmer Essentials for Designing, Building and Tuning Brett Elam bjelam@us.ibm.com - DB2 for z/os: Programmer Essentials for Designing, Building and Tuning April 4, 2013 DB2 for z/os: Programmer Essentials for Designing, Building and Tuning Information Management

More information

Configuration changes such as conversion from a single instance to RAC, ASM, etc.

Configuration changes such as conversion from a single instance to RAC, ASM, etc. Today, enterprises have to make sizeable investments in hardware and software to roll out infrastructure changes. For example, a data center may have an initiative to move databases to a low cost computing

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

Next-Generation SOA Infrastructure. An Oracle White Paper May 2007

Next-Generation SOA Infrastructure. An Oracle White Paper May 2007 Next-Generation SOA Infrastructure An Oracle White Paper May 2007 Next-Generation SOA Infrastructure INTRODUCTION Today, developers are faced with a bewildering array of technologies for developing Web

More information

[MS-DPEDM]: Entity Data Model Data Portability Overview

[MS-DPEDM]: Entity Data Model Data Portability Overview [MS-DPEDM]: Entity Data Model Data Portability Overview This document provides an overview for data portability in the Conceptual Schema Definition Language (CSDL), Store Schema Definition Language (SSDL),

More information

ZOS15P1 - Rational Business Developper : Comment développer rapidement une application zos/db2 sans connaissance Cobol avec EGL et RBD

ZOS15P1 - Rational Business Developper : Comment développer rapidement une application zos/db2 sans connaissance Cobol avec EGL et RBD IBM Software Group ZOS15P1 - Rational Business Developper : Comment développer rapidement une application zos/db2 sans connaissance Cobol avec EGL et RBD What is EGL? IBM s high-level procedural programming

More information

Migration Best Practices for Oracle Access Manager 10gR3 deployments O R A C L E W H I T E P A P E R M A R C H 2015

Migration Best Practices for Oracle Access Manager 10gR3 deployments O R A C L E W H I T E P A P E R M A R C H 2015 Migration Best Practices for Oracle Access Manager 10gR3 deployments O R A C L E W H I T E P A P E R M A R C H 2015 Disclaimer The following is intended to outline our general product direction. It is

More information

IBM WebSphere Studio Asset Analyzer, Version 5.1

IBM WebSphere Studio Asset Analyzer, Version 5.1 Helping you quickly understand, enhance and maintain enterprise applications IBM, Version 5.1 Highlights n Provides interactive textual n Helps shorten the learning curve and graphic reports that help

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Getting Started with Oracle Data Integrator 12c Virtual Machine Installation Guide July 2017 Oracle Fusion Middleware Getting Started with Oracle Data Integrator, 12c Copyright

More information

3GL Migration. Speaker name. Title Hewlett-Packard

3GL Migration. Speaker name. Title Hewlett-Packard 3GL Migration Speaker name Title Hewlett-Packard 2004 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice Languages COBOL (most popular) FORTRAN

More information

CGI Subroutines User's Guide

CGI Subroutines User's Guide FUJITSU Software NetCOBOL V11.0 CGI Subroutines User's Guide Windows B1WD-3361-01ENZ0(00) August 2015 Preface Purpose of this manual This manual describes how to create, execute, and debug COBOL programs

More information

1.1 Introduction. 12c (12.1.3)

1.1 Introduction. 12c (12.1.3) Oracle Data Integrator Getting Started 12c (12.1.3) E57393-01 March 2015 This document provides instructions on how to install the Oracle Data Integrator (ODI) 12c Getting Started Virtual Machine (VM).

More information

Oracle Fusion Middleware Planning an Installation of Oracle Fusion Middleware. 12c ( )

Oracle Fusion Middleware Planning an Installation of Oracle Fusion Middleware. 12c ( ) Oracle Fusion Middleware Planning an Installation of Oracle Fusion Middleware 12c (12.2.1.3) E80584-01 August 2017 Oracle Fusion Middleware Planning an Installation of Oracle Fusion Middleware, 12c (12.2.1.3)

More information

Oracle Java SE Advanced for ISVs

Oracle Java SE Advanced for ISVs Oracle Java SE Advanced for ISVs Oracle Java SE Advanced for ISVs is designed to enhance the Java based solutions that ISVs are providing to their enterprise customers. It brings together industry leading

More information

Comparison of SmartData Fabric with Cloudera and Hortonworks Revision 2.1

Comparison of SmartData Fabric with Cloudera and Hortonworks Revision 2.1 Comparison of SmartData Fabric with Cloudera and Hortonworks Revision 2.1 Page 1 of 11 www.whamtech.com (972) 991-5700 info@whamtech.com August 2018 Page 2 of 11 www.whamtech.com (972) 991-5700 info@whamtech.com

More information

ORACLE SNAP MANAGEMENT UTILITY FOR ORACLE DATABASE

ORACLE SNAP MANAGEMENT UTILITY FOR ORACLE DATABASE ORACLE SNAP MANAGEMENT UTILITY FOR ORACLE DATABASE EFFICIENTLY BACK UP, CLONE, AND RESTORE ORACLE DATABASES ON ORACLE S ZFS STORAGE APPLIANCE WITH ORACLE SNAP MANAGEMENT UTILITY KEY FEATURES Virtually

More information

S16150: What s New in COBOL Version 5 since GA

S16150: What s New in COBOL Version 5 since GA S16150: What s New in COBOL Version 5 since GA Tom Ross IBM Aug 4, 2014 1 Title: What's new in COBOL v5 since GA Refresher about COBOL V5 requirements Service updates Improved compatibility New Function

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

Introduction to Genero Enterprise

Introduction to Genero Enterprise Introduction to Genero Enterprise Laurent Galais Services & Support Manager Four Js US & Canada Tuesday, November 17, 201 Tysons Corner, VA Technical Advisory Council 201 Costa d Este Beach Resort, Vero

More information

ORACLE ENTERPRISE COMMUNICATIONS BROKER

ORACLE ENTERPRISE COMMUNICATIONS BROKER ORACLE ENTERPRISE COMMUNICATIONS BROKER A CORE COMMUNICATIONS CONTROLLER KEY FEATURES Centralized dial plan management Centralized session routing and forking Multivendor UC protocol normalization SIP

More information

QUARK AUTHOR THE SMART CONTENT TOOL. INFO SHEET Quark Author

QUARK AUTHOR THE SMART CONTENT TOOL. INFO SHEET Quark Author QUARK AUTHOR THE SMART CONTENT TOOL Quark Author is Web-based software that, together with Quark Publishing Platform, enables business and IT leaders to streamline and automate high-value customer communications

More information