IBM Mainframe to Oracle Cloud Reference Architecture Astadia Mainframe-To-Cloud Modernization Series IBM Mainframe to Oracle Cloud Reference Architecture
Total Page:16
File Type:pdf, Size:1020Kb
Load more
Recommended publications
-
Rexx Programmer's Reference
01_579967 ffirs.qxd 2/3/05 9:00 PM Page i Rexx Programmer’s Reference Howard Fosdick 01_579967 ffirs.qxd 2/3/05 9:00 PM Page iv 01_579967 ffirs.qxd 2/3/05 9:00 PM Page i Rexx Programmer’s Reference Howard Fosdick 01_579967 ffirs.qxd 2/3/05 9:00 PM Page ii Rexx Programmer’s Reference Published by Wiley Publishing, Inc. 10475 Crosspoint Boulevard Indianapolis, IN 46256 www.wiley.com Copyright © 2005 by Wiley Publishing, Inc., Indianapolis, Indiana Published simultaneously in Canada ISBN: 0-7645-7996-7 Manufactured in the United States of America 10 9 8 7 6 5 4 3 2 1 1MA/ST/QS/QV/IN No part of this publication may be reproduced, stored in a retrieval system or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, scanning or otherwise, except as permitted under Sections 107 or 108 of the 1976 United States Copyright Act, without either the prior written permission of the Publisher, or authorization through payment of the appropriate per-copy fee to the Copyright Clearance Center, 222 Rosewood Drive, Danvers, MA 01923, (978) 750-8400, fax (978) 646-8600. Requests to the Publisher for permission should be addressed to the Legal Department, Wiley Publishing, Inc., 10475 Crosspoint Blvd., Indianapolis, IN 46256, (317) 572-3447, fax (317) 572-4355, e-mail: [email protected]. LIMIT OF LIABILITY/DISCLAIMER OF WARRANTY: THE PUBLISHER AND THE AUTHOR MAKE NO REPRESENTATIONS OR WARRANTIES WITH RESPECT TO THE ACCURACY OR COM- PLETENESS OF THE CONTENTS OF THIS WORK AND SPECIFICALLY DISCLAIM ALL WAR- RANTIES, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE. -
Using Oracle Application Container Cloud Service
Oracle® Cloud Using Oracle Application Container Cloud Service E64179-32 Sep 2019 Oracle Cloud Using Oracle Application Container Cloud Service, E64179-32 Copyright © 2015, 2019, Oracle and/or its affiliates. All rights reserved. Primary Authors: Rebecca Parks, Marilyn Beck, Rob Gray Contributing Authors: Michael W. Williams This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are "commercial computer software" pursuant to the applicable Federal Acquisition Regulation and agency- specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs. -
Creating Java Applications Using Netrexx
SG24-2216-00 Creating Java Applications Using NetRexx September 1997 IBML International Technical Support Organization SG24-2216-00 Creating Java Applications Using NetRexx September 1997 Take Note! Before using this information and the product it supports, be sure to read the general information in Appendix B, “Special Notices” on page 273. First Edition (September 1997) This edition applies to Version 1.0 and Version 1.1 of NetRexx with Java Development Kit 1.1.1 for use with the OS/2 Warp, Windows 95, and Windows NT operating systems. Because NetRexx runs on any platform where Java is implemented, it applies to other platforms and operating systems as well. SAMPLE CODE ON THE INTERNET The sample code for this redbook is available as nrxredbk.zip on the ITSO home page on the Internet: ftp://www.redbooks.ibm.com/redbooks/SG242216 Download the sample code and read “Installing the Sample Programs” on page 4. Comments may be addressed to: IBM Corporation, International Technical Support Organization Dept. QXXE Building 80-E2 650 Harry Road San Jose, California 95120-6099 When you send information to IBM, you grant IBM a non-exclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. Copyright International Business Machines Corporation 1997. All rights reserved. Note to U.S. Government Users — Documentation related to restricted rights — Use, duplication or disclosure is subject to restrictions set forth in GSA ADP Schedule Contract with IBM Corp. Contents Figures . xi Tables . xv Preface . xvii How This Document is Organized ................................ xviii The Team That Wrote This Redbook ............................... -
Oracle Cloud Infrastructure and Microsoft Azure – Benefits
Scenarios and Use Cases Bernhard Düchting Bernhard Düchting Phone +49.30.3909.7278 Email: [email protected] Disclosure statement This is a preliminary document and may be changed substantially Microsoft makes no warranties, express or implied, in this document. prior to final commercial release of the software described herein. Complying with all applicable copyright laws is the responsibility of The information contained in this document represents the current the user. Without limiting the rights under copyright, no part of this view of Microsoft Corporation on the issues discussed as of the date document may be reproduced, stored in, or introduced into a retrieval of publication. Because Microsoft must respond to changing market system, or transmitted in any form or by any means (electronic, conditions, it should not be interpreted to be a commitment on the mechanical, photocopying, recording, or otherwise), or for any part of Microsoft, and Microsoft cannot guarantee the accuracy of any purpose, without the express written permission of Microsoft information presented after the date of publication. This Corporation. Microsoft may have patents, patent applications, documentation is for informational purposes only. trademarks, copyrights, or other intellectual property rights covering THE INFORMATION CONTAINED IN THIS PRESENTATION IS subject matter in this document. Except as expressly provided in any MICROSOFT CONFIDENTIAL. written license agreement from Microsoft, the furnishing of this document does not give you any license to these patents, trademarks, This presentation is for NDA Disclosure ONLY. Dates and capabilities copyrights, or other intellectual property. are subject to change. Supported geographies for upcoming previews or releases are subject to change. -
REXX Parsing for Today’S Slides and Other Webinars Visit: PARSE Forms
REXX Parsing For today’s slides and other webinars visit: www.themisinc.com/webinars PARSE Forms PARSE ARG template Parameters passed to program or subroutine PARSE EXTERNAL template Read from Terminal (TSO/E, VM only) PARSE NUMERIC template Current NUMERIC settings (TSO/E, VM only) PARSE PULL template Remove data from REXX STACK PARSE SOURCE template Information about the current program PARSE VALUE expression WITH template Information comes from expression PARSE VAR name template Parse one variable into other variables PARSE VERSION template Information about the REXX interpreter General Rules for Parsing • Parsing processes the data string from left to right • If there is more data than defined variables, the last variable receives ALL the remaining data • If there are more variables than data, the remaining variables are set as null • A period (.) may be used as a “placeholder” to bypass setting a variable PARSE VAR Keyword PARSE [UPPER] VAR origin template Use designated variable as input to template PARSING Example origin_data = ‘This is the original data’ PARSE VAR origin_data var1 var2 var3 var1 = This var2 = is var3 = the original data PARSING Example #2 origin_data = ‘This is the original data’ PARSE VAR origin_data var1 . var3 var1 = This var3 = original data PARSING Example #3 origin_data = ‘This is the original data’ PARSE VAR origin_data var1 var2 var3 . var1 = This var2 = is var3 = the PARSING Example #4 origin_data = ‘This is the original data’ PARSE VAR origin_data var1 “the” var3 . var1 = This is var3 = original NOTE: The placeholder (.) removes the last bit of data as space-delimited. Parsing Example Evaluate the following PARSE template: • What will dsn and member contain? dsname = "'SYS1.PROCLIB(JES2)'" PARSE VAR dsname "'" dsn '(' member ')' . -
Oracle® Linux Virtualization Manager Getting Started Guide
Oracle® Linux Virtualization Manager Getting Started Guide F25124-11 September 2021 Oracle Legal Notices Copyright © 2019, 2021 Oracle and/or its affiliates. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs (including any operating system, integrated software, any programs embedded, installed or activated on delivered hardware, and modifications of such programs) and Oracle computer documentation or other Oracle data delivered to or accessed by U.S. Government end users are "commercial computer software" or "commercial computer software documentation" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, the use, reproduction, duplication, release, display, disclosure, modification, preparation of derivative works, and/or adaptation of i) Oracle programs (including any operating system, integrated software, any programs embedded, installed or activated on delivered hardware, and modifications of such programs), ii) Oracle computer documentation and/or iii) other Oracle data, is subject to the rights and limitations specified in the license contained in the applicable contract. -
The Design of the REXX Language
The design of the REXX language by M. F. Cowlishaw One way of classifying computer languagesis by two (consciously or otherwise) to be easy to compile or classes: languages needing skilled programmers, and easy to interpret, it is designed (with the help of personal languages usedby an expanding population of general users. REstructured extended executor feedback from hundreds of users) to be easy to use. (REXX) isa flexible personal language designed with particular attention to feedback from its users. It has Three major factors affect the usability of a language. proved to be effective and easyto use, yet it is suffi- First, the basic concepts of a language affect its ciently general and powerfulto fulfil theneeds of many demanding professional applications.REXX is system syntax, grammar, and consistency. Second, the his- and hardware independent,so that it has been possi- tory and development of a language determine its ble to integrate it experimentally into several operating function, usability, and completeness. Third, but systems. Here REXX isused for such purposes as com- quite independently, the implementation of a lan- mand and macro programming, prototyping, educa- guage affects its acceptability, portability, and distri- tion, and personal programming. This paper introduces REXX and describes the basic design principles that bution. This paper introduces REXX and then dis- were followed in developingit. cusses basic concepts and developmental history as applied to the design of the REXX language. There are several experimental implementations of the REXX language within IBM for both large and small machines. One of these, by the author, has omputer languages may be classified in many become a part of the Virtual Machine/System Prod- ways. -
Cloud Accelerates Linux Adoption IDC ANALYZE the FUTURE
IDC White Paper | Cloud Accelerates Linux Adoption IDC ANALYZE THE FUTURE Sponsored by: Cloud Accelerates Linux Adoption Oracle Corp. IDC OPINION Authors: Ashish Nadkarni Cloud has become a crucial foundation for digital transformation (DX) initiatives and Gary Chen is shaping the IT strategy of enterprises today. Companies are extending their IT February 2018 infrastructure into the cloud for running business-critical applications, developing new applications, and delivering new cloud-based services. Applications are the lifeblood of modern enterprises. They are the foundation on which businesses maintain their existing revenue streams while examining ways to create new ones. A sound application strategy is a must for frms to be successful in expanding their competitive differentiation in the digital economy. Operating systems (OSs) provide a common foundational layer that enables IT to run current and new generations of applications in traditional IT environments, on its own private cloud, and in public clouds and utilize a variety of computing options such as bare metal, virtualization, and containerization. The increased reliance of IT on the cloud has accelerated the adoption of open source operating systems, Linux being the chief among them. Over the past decade, Linux has evolved to be a versatile platform for current- and new-generation applications — a platform that can run in the cloud or on-premises and can include open source tools and frameworks used in modern application development. Enterprise platform functionality and -
Getting the Most from Oracle Database in the Cloud with Oracle Exadata
White Paper Getting the Most from Oracle Database in the Cloud with Oracle Exadata Sponsored by: Oracle Carl W. Olofson Ashish Nadkarni November 2019 IN THIS WHITE PAPER It has been well established that the best possible environment for running Oracle Database is Oracle Exadata. This white paper focuses on the best solution for Oracle Database users who wish to enjoy the power and reliability of Exadata in conjunction with SaaS and other applications they are running on public cloud services. The paper considers the inherent compromises involved in running Oracle Database on non-Oracle, generic public cloud services, which do not support Oracle Exadata. Finally, the paper examines a solution that involves deploying Exadata in a colocation center that has a high- speed interconnect with the leading public cloud services, delivering Exadata power while overcoming the latency issue of connecting to applications in the public cloud. SITUATION OVERVIEW Oracle Database in the Public Cloud Increasingly, Oracle Database users are looking to move their applications to the public cloud or, in some cases, adopt SaaS applications while seeking to deploy Oracle Database in that public cloud, alongside the application. If the application is an Oracle application, the most straightforward way to do this is to move to the Oracle Cloud version of that application. For other applications, users are often choosing other cloud services, such as AWS, Microsoft Azure, or Google Cloud Platform (GCP). For databases that do not have significant performance or scalability requirements, deployment in public cloud environments may be just fine. Many Oracle customers, however, depend on the performance, scalability, and robustness that they have come to expect from the Oracle Exadata platform. -
Licensing; Oracle Software; Cloud Computing Environment
Licensing Oracle Software in the Cloud Computing Environment Approved Vendors This policy applies to cloud computing environments from the following vendors: Amazon Web Services – Amazon Elastic Compute Cloud (EC2), Amazon Relational Database Service (RDS) and Microsoft Azure Platform (collectively, the ‘Authorized Cloud Environments’). This policy applies to these Oracle programs. For the purposes of licensing Oracle programs in an Authorized Cloud Environment, customers are required to count as follows: Amazon EC2 and RDS - count two vCPUs as equivalent to one Oracle Processor license if hyper-threading is enabled, and one vCPU as equivalent to one Oracle Processor license if hyper-threading is not enabled. Microsoft Azure – count two vCPUs as equivalent to one Oracle Processor license if hyper- threading is enabled, and one vCPU as equivalent to one Oracle Processor license if hyper- threading is not enabled. When counting Oracle Processor license requirements in Authorized Cloud Environments, the Oracle Processor Core Factor Table is not applicable. When licensing Oracle programs with Standard Edition One, Standard Edition 2, or Standard Edition in the product name, the pricing is based on the size of the instance. Authorized Cloud Environment instances with four or fewer Amazon vCPUs, or four or fewer Azure vCPUs, are counted as 1 socket, which is considered equivalent to an Oracle processor license. For Authorized Cloud Environment instances with more than four Amazon vCPUs, or more than four Azure vCPUs, every four Amazon vCPUs used (rounded up to the nearest multiple of four), and every four Azure vCPUs used (rounded up to the nearest multiple of four) equate to a licensing requirement of one socket. -
Oracle Netsuite Service Descriptions
Oracle NetSuite Service Descriptions Effective Date: 18-August-2020 Oracle NetSuite V081820 Page 1 of 13 TABLE OF CONTENTS Metrics 3 Service Descriptions 4 Oracle NetSuite Planning and Budgeting Cloud Service - Instance 4 Oracle NetSuite Planning and Budgeting Cloud Service – Hosted Named User 4 Oracle Additional Storage for Oracle NetSuite Planning and Budgeting Cloud Service - 50 Gigabytes 5 Oracle Enterprise Planning and Budgeting Cloud Service - Hosted Named User 5 Oracle Warehouse Management Enterprise Cloud Service – Hosted Named User 6 Oracle Warehouse Workforce Management Cloud Service - Hosted Named User 7 Virtual Private Network for Warehouse Management Cloud Service – VPN Connection 7 Virtual Private Network Setup for Warehouse Management Cloud Service – VPN Connection 8 Oracle Enterprise Performance Management Standard Cloud Service - Hosted Named User 9 Oracle Additional Application for Oracle Enterprise Performance Management Standard Cloud Service - Hosted Environment 9 Oracle Integration Cloud Service for Oracle SaaS – Standard – 1 Million Messages 11 Oracle Integration Cloud Service for Oracle SaaS – Enterprise – 1 Million Messages 12 Oracle NetSuite v081820 Page 2 of 13 METRICS 50 Gigabytes: is defined as a 50 Gigabytes of additional computer storage space used by a storage filer equal to fifty billion bytes through the Cloud Service. For products such as Oracle Planning and Budgeting Cloud Service, that include two environments per Subscription ID, “50 Gigabytes” provides entitlement to an additional 50 Gigabytes of storage per environment (production and non- production). 1 Million Messages: is defined as the number of 1,000,000 message quantities per month used as part of the Oracle Cloud Service. A message is defined as up to 50Kb of in-and-out transmission from/to the Oracle Cloud Service. -
Deploy the Oracle Cloud and Microsoft Azure Interconnect Using Hub-And-Spoke Topology
Deploy the Oracle Cloud and Microsoft Azure Interconnect Using Hub-and-Spoke Topology Access Oracle Cloud Infrastructure Resources from Microsoft Azure over a Private Interconnect September 2020 | Version 1.00 Copyright © 2020, Oracle and/or its affiliates Public PURPOSE STATEMENT This document provides an overview of the capabilities enabled by the cross-cloud direct interconnection between Oracle Cloud Infrastructure and Microsoft Azure Interconnect. It’s solely intended to help you assess the business benefits of migrating workloads to Oracle Cloud Infrastructure and plan your IT projects. DISCLAIMER This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle. Your access to and use of this confidential material is subject to the terms and conditions of your Oracle software license and service agreement, which has been executed and with which you agree to comply. This document and information contained herein may not be disclosed, copied, reproduced or distributed to anyone outside Oracle without prior written consent of Oracle. This document is not part of your license agreement nor can it be incorporated into any contractual agreement with Oracle or its subsidiaries or affiliates. This document is for informational purposes only and is intended solely to assist you in planning for the implementation and upgrade of the product features described. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described in this document remains at the sole discretion of Oracle. Due to the nature of the product architecture, it may not be possible to safely include all features described in this document without risking significant destabilization of the code.