Integration with Peoplesoft Applications Using Oracle SOA Suite 11G BPEL

Total Page:16

File Type:pdf, Size:1020Kb

Integration with Peoplesoft Applications Using Oracle SOA Suite 11G BPEL ` Integration with PeopleSoft Applications using Oracle SOA Suite 11g BPEL Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL Table of Contents 1 LAB OVERVIEW .................................................................................................................................... 3 2 GETTING STARTED ............................................................................................................................. 4 2.1 Starting Oracle SOA Suite and JDeveloper .......................................................................... 4 3 CREATE THE BPEL PROCESS ........................................................................................................... 5 3.1 Create the BPEL Workspace and Project ............................................................................. 5 3.2 Create the PeopleSoft Partner Link..................................................................................... 12 3.3 Create an Invoke activity ..................................................................................................... 15 3.4 Create an Assign activity ..................................................................................................... 18 3.5 Create a Transform activity ................................................................................................. 20 3.6 Create the Business Rules .................................................................................................. 23 3.7 Validating, Compiling and Deploying the BPEL Process .................................................... 37 4 TESTING .............................................................................................................................................. 39 4.1 Invoking the Component Interface Service from BPEL ....................................................... 39 5 ADDITIONAL CREDIT ......................................................................................................................... 41 5.1 BPEL Console ..................................................................................................................... 41 5.2 JDeveloper .......................................................................................................................... 41 5.3 PeopleSoft CI ...................................................................................................................... 42 Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 1 Lab Overview This lab demonstrates native Web services integration to PeopleSoft using Oracle BPEL Process Manager. There are two major mechanisms to integrate with PeopleSoft using Web services; one is using Component Interfaces (CI) and the other using Application Messaging. This lab focuses on Component Interfaces. Oracle BPEL Process Manager (and other products such as Enterprise Service Bus) can just as easily integrate with Application Messaging. For more hands-on tutorials, check out the Oracle By Example Tutorials on the PeopleSoft and Fusion Middleware Best Practice Center on Oracle Technology Network: http://www.oracle.com/technology/tech/fmw4apps/peoplesoft In this Lab: • You will use a WSDL generated from a Component Interface for PeopleSoft HR component PERSONAL_DATA • The WSDL will be consumed by a BPEL Process • A BPEL Process will invoke the Get() operation within the WSDL and pass in Emp #. • The result will be a Sync response from PeopleSoft with Employee‘s Personal Data, containing only the fields we mapped out (using the transformation). • A business rule is then invoked to set the SecurityCheck flag depending on the employee‘s country of residence. For the purpose of this lab, we have chosen not to secure the Component Interface (CI). However, in production environments, you would generally secure the CI, and the BPEL process would also then have to pass in and validate a userid and password combination. The WSDL URL for PeopleSoft CI (PERSONAL_DATA) is pre-generated using the Provide Web Service Wizard in PIA (browser). The WSDL URL, which is an output of the wizard, is available for you to use for this lab. If you have time after your lab is complete, you may log into PeopleSoft to see how this was generated. There are instructions in the advanced credit section. Software Used: • PeopleSoft HCM 9.0 with PeopleTools 8.48 • Oracle SOA Suite version 11gR1 (available for download from OTN ) • Oracle JDeveloper version 11gR1 (available for download from OTN ) • All lab content and software are also available from FMW Best Practice Center for PeopleSoft at o http://www.oracle.com/technology/tech/fmw4apps/peoplesoft • Also check out FMW Best Practice Centers for E-Business Suite, Siebel and PeopleSoft o Web Search => Best Practice Center Siebel PeopleSoft E-Business Suite JD Edwards The PeopleSoft server is connected to the local lab environment. Questions: • Nishit Rao [email protected] • Srikant Subramaniam [email protected] Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 3 2 Getting Started 2.1 Starting Oracle SOA Suite and JDeveloper 1. Enter the following in a command window. This will start up the WebLogic Admin and Managed servers automatically as shown in the next two screen shots. cd C:\Oracle\Middleware\ start_all.cmd 180 Successful startup of the Admin Server. Successful startup of the Managed Server 2. Verify that the Admin and Managed servers have started up as shown above. 3. Start K JDeveloper Studio 11.1.1.1.0 Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 4 3 Create the BPEL Process 3.1 Create the BPEL Workspace and Project 1. Choose File > New 2. Select Applications in the Categories tree and SOA Application from the Items list. Click OK to continue. Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 5 3. Name the Application as BPELPSFT . Click Next. 4. Enter EmplInfo as the Project Name. Click Next . Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 6 5. Select the Composite with BPEL template. Click Finish . 6. Set the Process Name to EmplInfo and select Synchronous BPEL Process as shown. 7. Click on the icon next to the Input field to browse the input elements. Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 7 8. Click on the Import Schema File icon. 9. Click on the Browse Resources icon. 10. Locate the schema file in your folder (C:\FMW4Apps K LabFiles K PeopleSoft) and click OK . Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 8 11. Accept defaults on the next two screens by clicking OK. 12. Select GET_EMPLOYEE_INFORMATIONProcessRequest and click OK . Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 9 13. Click on the icon next to the Output field to browse the output elements. 14. Select GET_EMPLOYEE_INFORMATIONProcessResponse and click OK . Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 10 15. Click OK. 16. The BPEL process diagram should look as shown. 17. File > Save All to save your work. Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 11 3.2 Create the PeopleSoft Partner Link 1. Drag and drop a PartnerLink activity from the BPEL Services drop down list to the designer window as shown. Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 12 2. In the Create Partner Link window, enter the PeopleSoft WSDL URL in the WSDL File field and press the ENTER key. Oracle BPEL Process Manager will load WSDL from PeopleSoft repository. The URL is: http://hr848.us.oracle.com:7777/PSIGW/PeopleSoftServiceListeningConnector/ CI_CI_PERSONAL_DATA.1.wsdl Note: This is case sensitive. Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 13 3. The Name and Partner Link Type fields are automatically populated. 4. Select CI_CI_PERSONAL_DATA_Provider in the Partner Role field as shown below. 5. Click OK. Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 14 3.3 Create an Invoke activity 1. Drag and drop an Invoke from the BPEL Activities and Components drop down list to the designer window (after the receiveInput activity) as shown. 2. Double-click the Invoke icon to open the Invoke window. Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 15 3. In the Invoke window: a. Set Invoke Name to Invoke_PSFT b. Click on icon next to the Partner Link field and select CI_CI_PERSONAL_DATA.1 c. Click OK d. Set Operation to CI_CI_PERSONAL_DATA_G. This is the Get () operation within the CI. Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 16 e. Click on the icon next to the Input Variable text field to create a global variable for this activity. Accept defaults. Click Apply and then OK . f. Click on icon next to the Output Variable text field to create a global variable for this activity. Accept defaults. Click Apply , followed by OK . g. Ensure your invoke window looks as shown. Click OK. Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 17 3.4 Create an Assign activity 1. Drag and drop an Assign activity from BPEL Activities and Components drop down list to between the receiveInput and Invoke_PSFT activities as shown. 2. Double click on the recently added Assign icon. 3. Click on the General tab and enter CopyInput in the Name field. 4. Click Apply 5. Click the Copy Operation tab Integration with PeopleSoft Applications Using Oracle SOA Suite 11g BPEL 18 6. Select Copy
Recommended publications
  • Iway Application Adapter for Peoplesoft User's Guide Version 7.0.X and Higher
    iWay Application Adapter for PeopleSoft User's Guide Version 7.0.x and Higher August 16, 2018 Active Technologies, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information Builders logo, iWay, iWay Software, Parlay, PC/FOCUS, RStat, Table Talk, Web390, WebFOCUS, WebFOCUS Active Technologies, and WebFOCUS Magnify are registered trademarks, and DataMigrator and Hyperstage are trademarks of Information Builders, Inc. Adobe, the Adobe logo, Acrobat, Adobe Reader, Flash, Adobe Flash Builder, Flex, and PostScript are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. Due to the nature of this material, this document refers to numerous hardware and software products by their trademarks. In most, if not all cases, these designations are claimed as trademarks or registered trademarks by their respective companies. It is not this publisher's intent to use any of these names generically. The reader is therefore cautioned to investigate all claimed trademark rights before using any of these names other than to refer to the product described. Copyright © 2018, by Information Builders, Inc. and iWay Software. All rights reserved. Patent Pending. This manual, or parts thereof, may not be reproduced in any form without the written permission of Information Builders, Inc. Contents Preface ......................................................................... 7 Documentation Conventions ............................................................8 Related Publications .................................................................
    [Show full text]
  • Oracle Data Sheet
    COGNOS’ STRATEGYPLUS 4.0 FOR COGNOS ENTERPRISE BUSINESS INTELLIGENCE AND PEOPLESOFT ENTERPRISE PERFORMANCE MANAGEMENT 8.8 Cognos Enterprise Business Intelligence (EBI) provides Oracle’s PeopleSoft Enterprise Performance Management (EPM) customers with enhanced analytical, reporting, and scorecarding capabilities. Delivers end-to-end enterprise business intelligence. Integrated Cognos EBI integrates business intelligence components into a reporting, analysis, and scorecarding for PeopleSoft single, end-to-end framework serving all of the diverse informational Enterprise Performance Management. A PeopleSoft requirements of users across your organization. Using the consolida- Enterprise 8 validated software tion of a company’s various data sources to create a unified view of integration. the business, Cognos provides a consistent information environment. Cognos, Inc. Cognos, the leading provider of enterprise business intelligence (EBI), delivers software that helps companies improve business performance by enabling effective decision making at all levels of the organization. A forerunner in defining the BI software category, Cognos delivers the next level of competitive advantage— Corporate Performance Management (CPM)—achieved through the strategic application of BI on an enterprise scale. Cognos EBI for PeopleSoft Enterprise Performance Management 8.8 Integration Cognos offers a certified metadata and security integration with PeopleSoft Enterprise Performance Management. Through the StrategyPlus utility, PeopleSoft Enterprise metadata
    [Show full text]
  • Solutions from Oracle That Include Peoplesoft, Hyperion
    Updated 2-2020 Solutions from Oracle that include PeopleSoft, Hyperion, Advanced Financial Controls, and Oracle Business Intelligence solutions that are included in the UT System Enterprise Agreement for all Campuses. Human Capital Financial and Supply Financial Compliance Campus Solutions Customer Relationship Portal Solutions Data Warehouse and Data Marts Bundled Solutions User Productivity Kit Management Chain Management Management Human Resources (Human Financials (General Governance, Risk, and Student Administration (Campus Marketing Interaction Hub (formerly PeopleSoft EPM Campus Solutions Websphere for PeopleSoft User Productivity Kit - Developer (67 Resources, eBenefits, Ledger, Payables, Compliance Manager Community, Student Records, Academic Enterprise Portal) Warehouse Enterprise Total Named Users, 27 previous/40 eDevelopment, eProfile, & Receivables, Billing, eBill Advisement, Recruiting & Admissions, new) eProfile Desktop Manager) Payment, & Fixed Student Financials, Financial Aid) Assets) Payroll (Payroll & ePay) Asset Management (IT Oracle Fusion Gradebook TeleSales HRMS Portal Pack PeopleSoft Enterprise Performance PeopleTools Developer Full Use User Productivity Kit - Base Count Asset Management, Governance, Risk, and Management Warehouse (Financials, Maintenance Compliance Intelligence Human Resource, Supply Chain, & CRM Management, & Real Warehouses) Benefits Administration Treasury (Cash, Deal, & Enterprise Application Campus Self Service (Campus Directory, Online Marketing Financials Portal Pack Fusion Campus Solutions
    [Show full text]
  • Automating Peoplesoft Environments in the AWS Cloud
    Automating PeopleSoft Environments in the AWS Cloud April 2019 This paper has been archived. For the latest technical content on this subject, see the AWS Whitepapers & Guides page: https://aws.amazon.com/whitepapers Archived Notices Customers are responsible for making their own independent assessment of the information in this document. This document: (a) is for informational purposes only, (b) represents current AWS product offerings and practices, which are subject to change without notice, and (c) does not create any commitments or assurances from AWS and its affiliates, suppliers, or licensors. AWS products or services are provided “as is” without warranties, representations, or conditions of any kind, whether express or implied. The responsibilities and liabilities of AWS to its customers are controlled by AWS agreements, and this document is not part of, nor does it modify, any agreement between AWS and its customers © 2019 Amazon Web Services, Inc. and The Burgundy Group, Inc. All rights reserved. Archived Contents Automations Approach ........................................................................................................ 1 Benefits of Automating PeopleSoft Environments in the AWS Cloud ............................... 2 Amazon Web Services Functionality in Use ....................................................................... 4 Network............................................................................................................................. 4 Compute ..........................................................................................................................
    [Show full text]
  • Best Practices for Deploying Peoplesoft Applications on Oracle Database Appliance
    An Oracle Red Paper April 2014 Solution-in-a-box: Best practices for deploying PeopleSoft Applications on Oracle Database Appliance Solution-in-a-box: Best practices for deploying PeopleSoft Applications on Oracle Database Appliance Introduction ........................................................................................ 3 Disclaimer ...................................................................................... 3 Structure of This Red Paper ........................................................... 3 Related Materials ........................................................................... 3 Overview ............................................................................................ 4 Understanding Oracle Database Appliance Virtualized Platform .... 4 Oracle PeopleSoft Overview .......................................................... 4 Design – Planning Your Environment ................................................. 6 Understanding PeopleSoft VM Templates ...................................... 7 Accelerated Provisioning ................................................................ 8 Template Customization and Oracle Database Appliance .............. 8 Oracle PeopleSoft Deployment on Oracle Database Appliance ......... 8 Setting Up the Oracle Database Appliance Virtualized Platform ......... 9 Setting Up the Shared Repository on Oracle Database Appliance . 9 Downloading the PeopleSoft VM Template ...................................... 10 Importing the PeopleSoft PeopleTools VM Template into Oracle
    [Show full text]
  • Oracle Technology Global Price List September 7, 2021
    Prices in USA (Dollar) Oracle Technology Global Price List September 7, 2021 This document is the property of Oracle Corporation. Any reproduction of this document in part or in whole is strictly prohibited. For educational purposes only. Subject to change without notice. 1 of 16 Section I Prices in USA (Dollar) Oracle Database Software Update Processor Software Update Named User Plus License & Support License License & Support Database Products Oracle Database Standard Edition 2 350 77.00 17,500 3,850.00 Enterprise Edition 950 209.00 47,500 10,450.00 Personal Edition 460 101.20 - - Mobile Server - - 23,000 5,060.00 NoSQL Database Enterprise Edition 200 44 10,000 2,200.00 Enterprise Edition Options: Multitenant 350 77.00 17,500 3,850.00 Real Application Clusters 460 101.20 23,000 5,060.00 Real Application Clusters One Node 200 44.00 10,000 2,200.00 Active Data Guard 230 50.60 11,500 2,530.00 Partitioning 230 50.60 11,500 2,530.00 Real Application Testing 230 50.60 11,500 2,530.00 Advanced Compression 230 50.60 11,500 2,530.00 Advanced Security 300 66.00 15,000 3,300.00 Label Security 230 50.60 11,500 2,530.00 Database Vault 230 50.60 11,500 2,530.00 OLAP 460 101.20 23,000 5,060.00 TimesTen Application-Tier Database Cache 460 101.20 23,000 5,060.00 Database In-Memory 460 101.20 23,000 5,060.00 Database Enterprise Management Diagnostics Pack 150 33.00 7,500 1,650.00 Tuning Pack 100 22.00 5,000 1,100.00 Database Lifecycle Management Pack 240 52.80 12,000 2,640.00 Data Masking and Subsetting Pack 230 50.60 11,500 2,530.00 Cloud Management
    [Show full text]
  • ITCAM Agent for Peoplesoft Enterprise Process Scheduler Version 7.1.1
    ITCAM Agent for PeopleSoft Enterprise Process Scheduler Version 7.1.1 Troubleshooting ITCAM Agent for PeopleSoft Enterprise Process Scheduler Version 7.1.1 Troubleshooting Note Before using this information and the product it supports, read the information in “Notices” on page 43. This edition applies to version 7.1.1 of IBM Tivoli Composite Application Manager Agent for PeopleSoft Enterprise Process Scheduler (product number 5724-I45) and to all subsequent releases and modifications until otherwise indicated in new editions. © Copyright IBM Corporation 2008, 2013. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Tables ...............v Take Action commands troubleshooting .....34 Chapter 1. Troubleshooting basics . 1 Chapter 4. Support information ....35 Chapter 2. Trace logging .......3 Chapter 5. Informational, warning, and Overview of log file management .......3 error messages overview.......37 Principal trace log files ...........4 Message format .............37 Examples: Using trace logs .........8 Agent messages .............38 RAS trace parameters ...........9 Setting RAS trace parameters by using the GUI. 9 Appendix. ITCAM for Applications Manually setting RAS trace parameters ....10 documentation library ........41 Dynamic modification of trace settings .....11 Prerequisite publications ..........41 Turning on tracing ...........13 Related publications ...........41 Turning off tracing ...........14 Tivoli Monitoring Community on Service
    [Show full text]
  • Oracle Fusion Middleware Application Adapter for Peoplesoft User's Guide for Oracle Weblogic Server, 12C Release 1 (12.1.3.0.0) E17055-07
    Oracle® Fusion Middleware Application Adapters Application Adapter for PeopleSoft User's Guide for Oracle WebLogic Server 12c Release 1 (12.1.3.0.0) E17055-07 September 2014 Provides information on how to integrate with PeopleSoft systems and develop applications. Oracle Fusion Middleware Application Adapter for PeopleSoft User's Guide for Oracle WebLogic Server, 12c Release 1 (12.1.3.0.0) E17055-07 Copyright © 2001, 2014, Oracle and/or its affiliates. All rights reserved. Primary Author: Stefan Kostial Contributors: Vikas Anand, Marian Jones, Sunil Gopal, Bo Stern 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, the following notice is applicable: U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data delivered to U.S. Government customers are "commercial computer software" or "commercial technical data" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations.
    [Show full text]
  • Component Interfaces
    PeopleTools 8.57: Component Interfaces March 2020 PeopleTools 8.57: Component Interfaces Copyright © 1988, 2020, Oracle and/or its affiliates. All rights reserved. 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. No other rights are granted to the U.S. Government. This software or hardware is developed for general use in a variety of information management applications.
    [Show full text]
  • (JDA) Known Issue Report - Oracle Application Server Products Kaleeswari Vadivel ACS Delivery May 2018
    Report of Findings for Junta de Andalucía (JDA) Known Issue Report - Oracle Application Server Products Kaleeswari Vadivel ACS Delivery May 2018 Contents 1 Document Control ..................................................................................................................... 3 2 Contacts Details ........................................................................................................................ 4 3 Introduction ............................................................................................................................... 5 3.1 Purpose .................................................................................................................................................... 5 3.2 Methods ................................................................................................................................................... 5 4 Life Cycle Information ................................................................................................................ 6 4.1 Life Cycle Information .............................................................................................................................. 6 4.2 Releases Availability ................................................................................................................................ 7 4.2.1 Links to download Oracle Application Server Products ....................................................................................... 7 4.2.2 Supported Configurations for Oracle Application
    [Show full text]
  • Peoplesoft Peopletools 8.54
    PPeopleSofteopleSoft PPeopleTeopleToolsools 8.548.54 Features Overview PeopleTools 8.54 Overview PeopleTools provides the underlying technology for PeopleSoft applications. All PeopleSoft Search Technology applications, such as Human Capital Management and Customer Relationship The PeopleSoft Search Framework provides a standard, declarative method for Management are built, deployed, and maintained using PeopleTools. creating, deploying, and maintaining search indexes for all of your PeopleSoft With PeopleTools you can: applications. Ÿ Develop new applications or customize existing applications. Mobile Application Platform Ÿ Administer applications that you have deployed within your organization. The PeopleSoft Mobile Application Platform (MAP) is a framework for building mobile Ÿ Provide decision support and reporting functionality to decision makers. applications. Ÿ Integrate PeopleSoft applications with other PeopleSoft applications or third party Portal Technology applications. In PeopleTools, portal technology consists of PeopleSoft Pure Internet Architecture and Ÿ Upgrade and update your applications as part of system lifecycle management. the various systems, code, and standards used for creating and managing portals. Ÿ The area of PeopleTools technology contains over 40 tools, utilities, and technologies. This document provides brief introductions of each tool or Reporting and Analysis Tools technology, and presents two frameworks with which you can gain a better Analytic Calculation Engine understanding of the delivered technology, how to categorize the tools, and when Analytic Calculation Engine comprises a calculation engine plus several PeopleTools to use particular tools. features that enable application developers to define both the calculation rules and the display of calculated data within PeopleSoft applications for the purposes of PeopleTools 8.54 Categories multidimensional reporting, data editing, and analysis.
    [Show full text]
  • The Following Is Intended to Outline Our General Product Direction
    1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. 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 for Oracle’s products remains at the sole discretion of Oracle. 2 <Insert Picture Here> S317423: Deploying PeopleSoft Enterprise Applications on Exadata Tips, Techniques and Best Practices Oracle Development: Database and Applications MAA / Exadata Richard Exley, Darryl Presley – Oracle MAA/Exadata PepleSoft on Exadata Introduction: MAA and Exadata PeopleSoft on Exada PeopleSoft MAA HR Payroll Test Case Test Case Findings 4 Introduction 5 Introduction MAA/Exadata Team Committed to delivering a complete hardware and software solution for deploying Oracle applications on Exadata High Performance Scalability High Availability Disaster Recovery Current focus: E-Business Suite PeopleSoft Siebel 6 Exadata Hardware Architecture Scaleable Grid of industry standard servers for Compute and Storage • Eliminates long-standing tradeoff between Scalability, Availability, Cost Database Grid • 8 compute servers Storage Grid (1U) • 14 storage servers (2U) • 64 Intel cores • 112 Intel cores in storage • 100 TB SAS disk, or 336 TB SATA disk InfiniBand Network • Redundant 40Gb/s switches • 5 TB PCI Flash • Unified server & storage net • Data mirrored across storage servers © 2010 Oracle Corporation 7 Keys to Speed and Cost Advantage Exadata Exadata Hybrid Exadata Smart Intelligent Storage Columnar Flash Cache Grid Compression © 2010 Oracle Corporation 8 Exadata is Smart Storage Storage Server is smart storage, not a DB node Storage remains an independent tier Compute and Memory Intensive Processing Database Servers Perform complex database processing such as joins, aggregation, etc.
    [Show full text]