ORACLE APPLICATIONS R12.2, EBR, ONLINE PATCHING - MEANS LOT OF WORK FOR DEVELOPERS. Ajith Narayanan 25 th Feb 2015, Bangalore, India

Size: px
Start display at page:

Download "ORACLE APPLICATIONS R12.2, EBR, ONLINE PATCHING - MEANS LOT OF WORK FOR DEVELOPERS. Ajith Narayanan 25 th Feb 2015, Bangalore, India"

Transcription

1 ORACLE APPLICATIONS R12.2, EBR, ONLINE PATCHING - MEANS LOT OF WORK FOR DEVELOPERS Ajith Narayanan 25 th Feb 2015, Bangalore, India

2 Who Am I? Ajith Narayanan Oracle ACE Associate 11 years of Oracle [APPS] DBA experience. Blogger :- Speaker:- Conferences Of AIOUG, DOAG, NZOUG, UKOUG, OTNYathra, OTN APAC Tour etc. Website Chair ( ) :- ORACLERACSIG ( Member:- OAUG & AIOUG, ORACLERACSIG AIOUG Real Application Clusters SIG Leader

3 Agenda Introduction to R12.2 Architecture Online Patching Concepts Edition Based Redefinition (EBR) Rules for EBR Development Standards What is the extra work for a developer? Development Steps Questions Examples

4 INTRODUCTION TO R12.2 ARCHITECTURE

5 R12.2 Architecture

6 R12.2 Architecture Oracle E-Business Suite Release 12.2 uses two application tier ORACLE_HOMEs. An OracleAS ORACLE_HOME that was used in previous 12.x releases. An Oracle Fusion Middleware (FMW) ORACLE_HOME that supports Oracle WebLogic Server (WLS) and supersedes the Java (OracleAS ) ORACLE_HOME that was used in previous releases. The use of these two ORACLE_HOMEs enables Oracle E-Business Suite to take advantage of the latest Oracle technologies.

7 R12.2 Architecture The Oracle E-Business Suite modules (packaged in the file formsapp.ear) are deployed out of the OracleAS ORACLE_HOME, and the frmweb executable is also invoked out of this ORACLE_HOME. All major services are started out of the Fusion Middleware ORACLE_HOME.

8 R12.2 Architecture

9 ONLINE PATCHING CONCEPTS

10 Edition Based Redefinition (EBR) An edition as name suggests is virtual workspace environment where database objects are redefined and finalized as final version if satisfied. Edition-Based Redefinition can enable us to have two objects with the same name but of Different Editions. EBR feature started from Oracle 11g R2 onwards, and all database by default has a base edition named ORA$BASE. Objects that are editionable :- FUNCTION LIBRARY PACKAGE and PACKAGE BODY PROCEDURE TRIGGER TYPE and TYPE BODY SYNONYM VIEW Related MOS ID:

11 Edition Based Redefinition (EBR) Database Considerations As EBR is enabled per database user, the potentially editionable objects in a particular schema are all either editioned or not (internal database users such as SYS, SYSTEM, and PUBLIC cannot be editioned). As not all database objects are editioned, and because the definition of one object may depend on another object, for editioning to be enabled successfully there must be no dependencies of non-editioned objects on editioned objects. Potential violations here fall into the following categories: PUBLIC synonyms to editioned objects Tables and queues that depend on editioned user defined types (UDTs) Materialized views that depend on editioned objects Custom and third-party schemas that depend on editioned objects Non-APPS synonyms on Oracle E-Business Suite tables Related MOS ID:

12 Rules for EBR A non-editioned object cannot depend on an editioned object. A public synonym cannot refer to an editionedobject. (why APPS-owned synonyms take precedence) A function-based index cannot depend on an editioned function. A materialized view cannot depend on an editionedview. (why a lot of MV s are invalidated in 12.2) A table cannot have a column of a user-defined data type whose owner is editions enabled (APPS is, APPS_NE isn t.) A noneditionedsubprogram cannot have a static reference to a subprogram whose owner is editions-enabled. (APPS_NE.<package> cannot reference APPS.<function>) Related MOS ID:

13 Logical View

14 Logical View

15 Example

16 Online Patching? New patching mechanism that allows the application of patches while the system is up and running, and the users are working as normal Phases that make up the Online Patching cycle? Prepare a virtual copy (patch edition) of the running application (run edition). Apply patches to the patch edition of the application. Finalize the system in readiness for the cutover phase. Cutover to the patch edition and make it the new run edition. Cleanup obsolete definitions or data to recover space. When a patch is applied, adopwill: Synchronize the contents of the run file system to the patch FS (phase=prepare) Apply patching actions on the patch file system. (phase=apply) During the cutover phase, the adop utility (phase=cutover) : Restarts the application tier services. Swap [Patch FS] -> [Run FS]

17 Online Patching? SELECT DOP_SESSION_ID,PREPARE_STATUS,APPLY_STATUS,FINALIZE_STATUS,CUTOVER_STATUS,CLEANUP_STATUS, ABORT_STATUS,STATUS,ABANDON_FLAG,NODE_NAME FROM AD_ADOP_SESSIONS ORDER BY ADOP_SESSION_ID; Note: Y denotes that the phase is done N denotes that the phase has not been completed X denotes that the phase is not applicable R denotes that the phase is running (in progress) F denotes that the phase has failed P (is applicable only to APPLY phase) denotes at least one patch is already applied for the session id C denotes that the status of this ADOP session has completed Note: The following Numerical statuses are only relevant for the cutover phase... These status values are updated when a step has completed, and are as follows: N denotes that the phase has not been completed 0 denotes that cutover/force_shutdown has started 1 denotes the "force_shutdown" step has successfully executed 3 denotes the "db_cutover" step has successfully executed 4 denotes the "fs_cutover" step has successfully executed 6 denotes the "force_startup" step has successfully executed Y denotes that the phase is done

18 DEVELOPMENTSTANDARDS

19 What is the extra work for a developer? Table Names must be unique at 29 bytes or less The Editioning Views will have suffix of # added to them automatically This is done with a substr(table_name,1,29) Column Names must be 28 bytes or less A Revised Column Name has the form: <logical_column_name>#<version_tag> Version_tag is a string of the form: [0-9A-Z] Forward Cross-Edition Triggers <table_name>_f<change_number> Suffix + are the EBR DB Triggers on Seed Data A Materialized View Definition must be stored in an ordinary view called MV_NAME '#'

20 DEVELOPMENTSTEPS

21 What is the extra work for a developer? General Steps 1.Develop customization in the run edition of your non-prod environment Both DB and OS File System Object specific steps we will talk about below Recompile invalids (ad_zd.compile) 2.Create the patch (manually create patch actions) 3.Test the patch Deploying Customizations in Oracle E-Business Suite Release 12.2 (MOS Doc ID )

22 What is the extra work for a developer? An Edition Synonym will point to the correct version of the Table 1. 1.Make your table changes 2. 2.Regenerate the edition view (ad_zd_table.patch) 3. 3.Upgrade table for Edition Storage (ad_zd_seed.upgrade) 4. 4.Create loader LCT for Seed Data 5. 5.Create Forward Crossedition Trigger (FCET) This keeps data in sync with the new data representation 6.Create Reverse Crossedition Trigger (RCET) This keeps data in sync with the old data representation 7.Extract updated table defintion (xdfgen.pl) 8.Extract Seed Data (FNDLOAD) 9.Recompile invalids (ad_zd.compile)

23 What is the extra work for a developer? Seed Data tables must include a new column ZD_EDITION_NAME This is used to present a consistent view of the data based on the Edition. 1.Create initial table definition Table must go in APPS_TS_SEED tablespace 2.Upgrade table to support Editioned Storage (ad_zd_seed.upgrade) This adds the column ZD_EDITION_NAME 3.Manually insert new Seed Data records into table 4.Create a Loader Control File for Seed Data FNDLOAD *.LCT file 5.Extract Seed Data FNDLOAD apps/<apps_pwd> 0 Y DOWNLOAD my_table.lct my_table.ldt my_table

24 What is the extra work for a developer? Not using an APPS.<editioned object synonym> Views: disappearing/appearing columns, indexes, even data PL/SQL: dropped/altered/changed API s, usage, references Triggers: disappearing/appearing constraints, functional changes Types: disappearing/appearing columns, indexes, even data Synonyms: pointers change: Views Tables, all the above Invalid Objects Appear After Patching Functional Code Behavior Changes After Patching If another Developer is using an Edition: The DEFAULT_EDITION can change without warning

25 What is the extra work for a developer? Always Be Aware of other Patching or Development activity going on in the instance. Stage Filesystem-based Code in both RUN_BASE and PATCH_BASE Scheduling of Data Changes is Critical (changes can vanish) Announce to all other Users if Creating/Cutting-Over a New Edition Flag all Base-Object Customizations for Detection during PPA

26 What is the extra work for a developer? Not using an APPS.<editioned object synonym> Views: disappearing/appearing columns, indexes, even data PL/SQL: dropped/altered/changed API s, usage, references Triggers: disappearing/appearing constraints, functional changes Types: disappearing/appearing columns, indexes, even data Synonyms: pointers change: Views Tables, all the above Invalid Objects Appear After Patching Functional Code Behavior Changes After Patching If another Developer is using an Edition: The DEFAULT_EDITION can change without warning

27 What is the extra work for a developer? Always Be Aware of other Patching or Development activity going on in the instance Stage Filesystem-based Code in both RUN_BASE and PATCH_BASE Scheduling of Data Changes is Critical (changes can vanish) Announce to all other Users if Creating/Cutting-Over a New Edition Flag all Base-Object Customizations for Detection during PPA

28 What is the extra work for a developer?

29 References Deploying Customizations in Oracle E-Business Suite Release 12.2 (Doc ID ) Master Note: Overview of Oracle Edition-Based Redefinition (EBR) (Doc ID ) Oracle E-Business Suite Release 12.2: Online Patching FAQ (Doc ID ) Oracle Application Framework Release Notes for Release (Doc ID ) Where to Deploy Custom Java [default: $JAVA_TOP/*] (Doc ID ) Oracle E-Business Suite Release 12.2 Information Center (Doc ID )

30 Q&A -

R12.2 Development and Deployment of Customizations

R12.2 Development and Deployment of Customizations R12.2 Development and Deployment of Customizations Session ID#: 10309, Wed 4/15/2015, 9:15-10:15, South Seas H Prepared by: John Peters Principal Consultant JRPJR, Inc john.peters@jrpjr.com Revision 2.1

More information

E-Business Suite 11i Upgrade to and A Technical Comparison

E-Business Suite 11i Upgrade to and A Technical Comparison COLLABORATE 2014 OAUG Forum E-Business Suite 11i Upgrade to 12.1.3 and 12.2.3 - A Technical Comparison Biju Thomas, OneNeck IT Solutions Abstract Much awaited 12.2 release of EBS has come. Always there

More information

How to Implement Oracle CPUs for EBS

How to Implement Oracle CPUs for EBS How to Implement Oracle CPUs for EBS Eng. Cristian Peque Oracle Security Specialist Program Agenda Understanding what an Oracle CPU is What we need to do after Oracle launches a CPU How to install all

More information

<Insert Picture Here> Edition-based redefinition: the key to online application upgrade

<Insert Picture Here> Edition-based redefinition: the key to online application upgrade Edition-based redefinition: the key to online application upgrade Bryn Llewellyn Distinguished Product Manager, Database Division, Oracle HQ The following is intended to outline our

More information

Edition-Based Redefinition

Edition-Based Redefinition Edition-Based Redefinition Janina Patolla Trivadis AG, Basel Basel Baden Bern Brugg Lausanne Zurich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg Munich Stuttgart Vienna Introduction Upgrading critical

More information

Exploring Edition-Based Redefinition

Exploring Edition-Based Redefinition Exploring Edition-Based Redefinition Presented by: John Jay King King Training Resources - john@kingtraining.com Download this paper from: http://www.kingtraining.com 1 Session Objectives Understand the

More information

E-Business Suite 12.2 Configuration Management II

E-Business Suite 12.2 Configuration Management II E-Business Suite 12.2 Configuration Management II Sumeet Kabra Agenda E-Business Suite 12.2 Applications Architecture [ Recap ] Techstack Configurations [ Recap ] Applications Configuration Management

More information

OAUG Webinar: E-Business Suite New Oracle ADClone 12.2 Options. Oracle E-Business 11i/12.1/12.2 Six Easy Steps -- Now Three Easy Steps

OAUG Webinar: E-Business Suite New Oracle ADClone 12.2 Options. Oracle E-Business 11i/12.1/12.2 Six Easy Steps -- Now Three Easy Steps OAUG Webinar: E-Business Suite New Oracle ADClone 12.2 Options Oracle E-Business 11i/12.1/12.2 Six Easy Steps -- Now Three Easy Steps Tom Blanford, Oracle E-Business Suite Architect and DBA Michael Barone,

More information

E-Business Cloning Six Easy Steps, Now Three Easy Steps. Michael Brown BlueStar

E-Business Cloning Six Easy Steps, Now Three Easy Steps. Michael Brown BlueStar E-Business 12.2.5 Cloning Six Easy Steps, Now Three Easy Steps Michael Brown BlueStar mbrown@bluestarinc.com Who Am I? Over 20 years experience with Oracle Database Over 15 years experience with E-Business

More information

Oracle E-Business Suite 12.2 Administration

Oracle E-Business Suite 12.2 Administration Oracle E-Business Suite 12.2 Administration Prepared by: Ivo Dujmovic Ivo@patchivo.com Entrepreneur Patchivo, Interana REMINDER Check in on the COLLABORATE mobile app About the Presenter Ivo Dujmovic Patchivo

More information

The Big Picture of the Release Upgrade. Mike Swing CTO TruTek

The Big Picture of the Release Upgrade. Mike Swing CTO TruTek The Big Picture of the Release 12.2.4 Upgrade Mike Swing CTO TruTek Learning Objectives Objective 1: Understand the detailed technical steps required to upgrade to R12.2. Objective 2: Learn about ADOP,

More information

Gather Schema Statistics Oracle 10g Examples

Gather Schema Statistics Oracle 10g Examples Gather Schema Statistics Oracle 10g Examples Document 452011.1 * Restoring table statistics in 10G onwards Document 237901.1 Gathering Schema or Database Statistics Automatically - Examples gathering on

More information

Twist and Turn to Upgrade 11i E-Business Suite from Windows 32-bit to Rel on Linux

Twist and Turn to Upgrade 11i E-Business Suite from Windows 32-bit to Rel on Linux Twist and Turn to Upgrade 11i E-Business Suite from Windows 32-bit to Rel12.2.5 on Linux Session ID: 10650 Prepared by: Heema Satapathy Arun Kumar BIAS Corporation @BIASCorp Apr 26, 2018 Remember to complete

More information

New Security Features in Oracle E-Business Suite 12.2

New Security Features in Oracle E-Business Suite 12.2 New Security Features in Oracle E-Business Suite 12.2 Session ID#: 14365 Stephen Kost Chief Technology Officer Integrigy Corporation REMINDER Check in on the COLLABORATE mobile app About Integrigy ERP

More information

OEM12c Overview for DBA

OEM12c Overview for DBA OEM12c Overview for DBA Francisco Munoz Alvarez LAOUC, CLOUG & NZOUG President IOUC LA Spokesperson 8/9/10g/11g OCP, RAC OCE, AS OCA, E-Business OCP, SQL/PLSQL OCA, Oracle 7 OCM Oracle 7, 11GR2 & OVM 3.1

More information

Re-platforming the E-Business Suite Database

Re-platforming the E-Business Suite Database Re-platforming the E-Business Suite Database Ahmed Alomari Performance Specialist aalomari@cybernoor.com Database SIG Agenda Options Case Study Q & A Options Re-platforming Options Transportable DB Transportable

More information

EM 12c: Broadest, Most Complete Range of Enterprise Services

EM 12c: Broadest, Most Complete Range of Enterprise Services Enterprise Manager 12c Cloud Taxonomy EM Product Management 1 Copyright 2011, Oracle and/or its affiliates. All rights EM 12c: Broadest, Most Complete Range of Enterprise Services Self-Service Application/

More information

Oracle 10g Database Upgrade and Migration

Oracle 10g Database Upgrade and Migration Oracle 10g Database Upgrade and Migration Page 1 www.decus.de 1 Monika Dreher Product Technology Services ORACLE Corporation Agenda Upgrade to Oracle 10g Migrating to Oracle 10g Migration Resources Sample

More information

Oracle Exam 1z0-238 R12 Oracle: Install, Patch and Maintain Oracle Applications Version: 5.0 [ Total Questions: 225 ]

Oracle Exam 1z0-238 R12 Oracle: Install, Patch and Maintain Oracle Applications Version: 5.0 [ Total Questions: 225 ] s@lm@n Oracle Exam 1z0-238 R12 Oracle: Install, Patch and Maintain Oracle Applications Version: 5.0 [ Total Questions: 225 ] Topic 0, A A Question No : 1 - (Topic 0) Which three are the correct definitions

More information

Question No : 1 Which three are the correct definitions of the objects in the Oracle Applications database?(choose three.)

Question No : 1 Which three are the correct definitions of the objects in the Oracle Applications database?(choose three.) Volume: 225 Questions Question No : 1 Which three are the correct definitions of the objects in the Oracle Applications database?(choose three.) A. Hybrid objects contain materialized view objects, and

More information

Oracle Identity Manager 11gR2-PS2 Hands-on Workshop Tech Deep Dive Upgrade

Oracle Identity Manager 11gR2-PS2 Hands-on Workshop Tech Deep Dive Upgrade Oracle Identity Manager 11gR2-PS2 Hands-on Workshop Tech Deep Dive Upgrade atul.goyal@oracle.com Principal Product Manager, Oracle Identity Governance This document is for informational

More information

Oracle E-Business Suite(R12.2) Troubleshooting

Oracle E-Business Suite(R12.2) Troubleshooting Oracle E-Business Suite(R12.2) Troubleshooting Amit Sharma Apps DBA Expert CORPORATE OFFICE 8 Magnolia Place, Harrow, London, UK HA2 6DS US OFFICE 6515 E Union Ave, Unit 451, Denver CO 80237 INDIA OFFICE

More information

High density deployments using Weblogic Multitenancy

High density deployments using Weblogic Multitenancy High density deployments using Weblogic Multitenancy DOAG 2016 Jaap Poot, 16 nov 2016 Mission 2 We help our customers get the most out of the their Oracle investments 1 ACE Director, 2 ACEs and 1 ACE associate

More information

<Insert Picture Here> Maximum Availability Architecture (MAA) Best Practices: Online Patching and Rolling Upgrades with Oracle Database

<Insert Picture Here> Maximum Availability Architecture (MAA) Best Practices: Online Patching and Rolling Upgrades with Oracle Database 2007 Oracle 1 2007 Oracle 2 Maximum Availability Architecture (MAA) Best Practices: Online Patching and Rolling Upgrades with Oracle Database Ray Dutcher, Maximum Availability Architecture,

More information

R12.2 Extension and Development Tips and Tricks

R12.2 Extension and Development Tips and Tricks R12.2 Extension and Development Tips and Tricks John Peters JRPJR, Inc. john.peters@jrpjr.com Introduction This paper has come out of my years of experience as an Oracle Consultant and Developer. I have

More information

Virtualizing Oracle on VMware

Virtualizing Oracle on VMware Virtualizing Oracle on VMware Sudhansu Pati, VCP Certified 4/20/2012 2011 VMware Inc. All rights reserved Agenda Introduction Oracle Databases on VMware Key Benefits Performance, Support, and Licensing

More information

1 Prepare the environments

1 Prepare the environments 1 Prepare the environments 1.1 Edit the Environment User Data A. Open workbench of PPM B. Go to Sys Admin> User Data C. List User Data D. Double click Environment User Data E. Add field "Oracle EBS version

More information

E-Business Suite Customization Impact Assessment

E-Business Suite Customization Impact Assessment E-Business Suite Customization Impact Assessment Webinar Mechanics Submit text questions. Q&A addressed at the end of the session. Answers will be posted within two. weeks on our new LinkedIn Group, EBS

More information

The one bit everyone forgets: with JUnit. John Stegeman Xchanging

The one bit everyone forgets: with JUnit. John Stegeman Xchanging The one bit everyone forgets: Testing your ADF application with JUnit http://groups.google.com/group/adf-methodology ADF EMG A place to discuss best practices and methodologies for JDeveloper ADF enterprise

More information

Oracle Secure Enterprise Search

Oracle Secure Enterprise Search Oracle Secure Enterprise Search Installation and Upgrade Guide 11g Release 2 (11.2.2.2) for Microsoft Windows (64-Bit) E35069-14 February 2017 This Guide describes how to install or upgrade to Oracle Secure

More information

Oracle Way To Grant Schema Privileges All Tables

Oracle Way To Grant Schema Privileges All Tables Oracle Way To Grant Schema Privileges All Tables Here in this article we will discuss on how to grant access to all tables in a schema in oracle database as well as we will focus on schema owners. From

More information

Staged APPL_TOP approach - Key to achieve tolerable downtime for Oracle Apps migrations

Staged APPL_TOP approach - Key to achieve tolerable downtime for Oracle Apps migrations Staged APPL_TOP approach - Key to achieve tolerable downtime for Oracle Apps migrations Nikhil Kumar Infosys Technologies Limited Nagarjuna Cherukuri Navo Systems Inc. Learning Objectives As a result of

More information

<Insert Picture Here> What's New for.net Developers for Oracle Database

<Insert Picture Here> What's New for.net Developers for Oracle Database 1 What's New for.net Developers for Oracle Database Alex Keh Principal Product Manager, Oracle Program Agenda Currently available Visual Studio 2010 and.net Framework 4 ODAC 11.2

More information

More4Apps Mobile - Installation and Configuration Guide

More4Apps Mobile - Installation and Configuration Guide More4Apps Mobile - Installation and Configuration Guide Last updated: 27 June 2018 Table of Contents 1. Overview Mobile Applications - Installation and Configuration... 2 2. Steps - Installation and Configuration...

More information

Worry Free Application Upgrades

Worry Free Application Upgrades Worry Free Application Upgrades Jagan R. Athreya Oracle Corporation Naveen Garg ColorCon The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Session 1079: Using Real Application Testing to Successfully Migrate to Exadata - Best Practices and Customer Case Studies

Session 1079: Using Real Application Testing to Successfully Migrate to Exadata - Best Practices and Customer Case Studies Session 1079: Using Real Application Testing to Successfully Migrate to Exadata - Best Practices and Customer Case Studies Prabhaker Gongloor (GP) Product Management Director, Database Manageability, Oracle

More information

Version Control for PL/SQL

Version Control for PL/SQL Version Control for PL/SQL What is the problem? How did we solve it? Implementation Strategies Demo!! Customer Spotlight Success Story: (In other words, this really works. :-) ) Rhenus Logistics, leading

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Upgrading Oracle WebCenter 12c Release 2 (12.2.1.1) E71489-01 June 2016 Explains how to upgrade your existing Oracle WebCenter environment. Oracle Fusion Middleware Upgrading Oracle

More information

Essential (free) Tools for DBA!

Essential (free) Tools for DBA! Essential (free) Tools for DBA! Biju Thomas Principal Solutions Architect OneNeck IT Solutions www.oneneck.com @biju_thomas 2 About me! Biju Thomas Principal Solutions Architect with OneNeck IT Solutions

More information

SOA Cloud Service Automatic Service Migration

SOA Cloud Service Automatic Service Migration SOA Cloud Service Automatic Service Migration SOACS 12.2.1.2 O R A C L E W H I T E P A P E R A U G U S T 2 0 1 8 Table of Contents Introduction 1 Configuring Automatic Service Migration for a 12.2.1.2

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights Web Services and SOA Integration Options for Oracle E-Business Suite Rajesh Ghosh, Group Manager, Applications Technology Group Abhishek Verma,

More information

Oracle Transportation Management. Migration Guide Release 6.2 Part No. E

Oracle Transportation Management. Migration Guide Release 6.2 Part No. E Oracle Transportation Management Migration Guide Release 6.2 Part No. E20095-04 December 2012 Oracle Transportation Management Migration Guide, Release 6.2 Part No. E20095-0 Copyright 2001, 2012, Oracle

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Upgrade Planning Guide 11g Release 1 (11.1.1.7.0) E10125-09 February 2013 Oracle Fusion Middleware Upgrade Planning Guide, 11g Release 1 (11.1.1.7.0) E10125-09 Copyright 2009,

More information

Oracle EBS Capacity Analysis Using Statistical Meth. Ajith Narayanan Software Development Advisor Bangalore, 2 nd Nov 2012

Oracle EBS Capacity Analysis Using Statistical Meth. Ajith Narayanan Software Development Advisor Bangalore, 2 nd Nov 2012 Oracle EBS Capacity Analysis Using Statistical Meth Ajith Narayanan Software Development Advisor Bangalore, 2 nd Nov 2012 Disclaimer The views/contents in this slides are those of the author and do not

More information

Oracle E-Business Suite R12.2 Administration

Oracle E-Business Suite R12.2 Administration Oracle E-Business Suite R12.2 Administration This class provides training applicable to Oracle E-Business Suite Releases 12.2. It does not provide training applicable to Oracle E-Business Suite Releases

More information

Edition-Based Redefinition

Edition-Based Redefinition Edition-Based Redefinition Zero Downtime Application Patching and Upgrades presentation for: UKOUG Conference Series Technology & E-Business 2010 Disclaimer This room is an unsafe harbour No one from Oracle

More information

Under the Hood of Oracle Database Cloud Service for Oracle DBAs 2017 ANZ Webinar Tour by

Under the Hood of Oracle Database Cloud Service for Oracle DBAs 2017 ANZ Webinar Tour by Under the Hood of Oracle Database Cloud Service for Oracle DBAs 2017 ANZ Webinar Tour by Kai Yu Oracle Solutions Engineering Dell EMC Kai Yu Technical Staff, Dell EMC Database Engineering 25+ years working

More information

Security Benefits of Implementing Database Vault. -Arpita Ghatak

Security Benefits of Implementing Database Vault. -Arpita Ghatak Security Benefits of Implementing Database Vault -Arpita Ghatak Topics to be covered Why Do we need Database Vault? The Benefits Components of Database Vault Oracle Database access control Components Other

More information

Maximo Upgrade. April 2016

Maximo Upgrade. April 2016 Maximo Upgrade April 2016 Agenda Maximo Upgrade Why Upgrade Upgrade Requirements Upgrade Planning Upgrade Process Overview Upgrade Process Notes Upgrade Notes Maximo 7.6 Installation and Configuration

More information

Oracle Warehouse Builder 10g Runtime Environment, an Update. An Oracle White Paper February 2004

Oracle Warehouse Builder 10g Runtime Environment, an Update. An Oracle White Paper February 2004 Oracle Warehouse Builder 10g Runtime Environment, an Update An Oracle White Paper February 2004 Runtime Environment, an Update Executive Overview... 3 Introduction... 3 Runtime in warehouse builder 9.0.3...

More information

Oracle Application Server 10g Forms Reports

Oracle Application Server 10g Forms Reports Oracle Application Server 10g Forms Reports Services Installation Guide Linux Asian languages are not supported on the SUSE10 and SUSE11 Linux operating systems. 2.1.3 Oracle SOA Suite and Oracle Application

More information

Virtualizing Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips

Virtualizing Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips Virtualizing Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips IOUG Collaborate 12, Virtualization Boot Camp Session #328, Monday April 23 rd, 3:45-4:45pm Kai Yu Oracle Solutions Engineering Lab Dell

More information

Enterprise Manager Cloud Control 12c Release 4 ( )

Enterprise Manager Cloud Control 12c Release 4 ( ) Enterprise Manager Cloud Control 12c Release 4 (12.1.0.4) Covers: a) Install b) Upgrade c) Agent Deployment d) Plug-in Deployment e) OMS Patching - Akanksha Sheoran Kaler Safe Harbor Statement The following

More information

High Availability Infrastructure for Cloud Computing

High Availability Infrastructure for Cloud Computing High Availability Infrastructure for Cloud Computing Oracle Technology Network Architect Day Reston, VA, May 16, 2012 Kai Yu Oracle Solutions Engineering Lab Enterprise Solutions Engineering, Dell Inc.

More information

Oracle WebCenter Portal Jump Start Kit (JSK) Readme for Linux 64-bit Operating Systems

Oracle WebCenter Portal Jump Start Kit (JSK) Readme for Linux 64-bit Operating Systems Oracle WebCenter Portal Jump Start Kit Readme 11.1.1.8.0 Oracle WebCenter Portal Jump Start Kit (JSK) Readme for Linux 64-bit Operating Systems 11.1.1.8.0 Overview The Jump Start Kit (JSK) for WebCenter

More information

Oracle 1Z0-238 Exam Questions and Answers (PDF) Oracle 1Z0-238 Exam Questions 1Z0-238 BrainDumps

Oracle 1Z0-238 Exam Questions and Answers (PDF) Oracle 1Z0-238 Exam Questions 1Z0-238 BrainDumps Oracle 1Z0-238 Dumps with Valid 1Z0-238 Exam Questions PDF [2018] The Oracle 1Z0-238 Oracle EBS R12: Install, Patch and Maintain Applications exam is an ultimate source for professionals to retain their

More information

Copyright 2013, Oracle and/or its affiliates. All rights reserved.

Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 Upgrade to Oracle Database 12c 何革新 Gexin.he@oracle.com The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

More information

Sample Database Table Schemas 11g Release 2 Pdf

Sample Database Table Schemas 11g Release 2 Pdf Sample Database Table Schemas 11g Release 2 Pdf Oracle Database Concepts, 11g Release 2 (11.2). E40540- About Relational Databases. 2-7. Example: CREATE TABLE and ALTER TABLE Statements. Users of Oracle

More information

Oracle Privileged Account Manager

Oracle Privileged Account Manager Oracle Privileged Account Manager Disaster Recovery Deployment Considerations O R A C L E W H I T E P A P E R A U G U S T 2 0 1 5 Disclaimer The following is intended to outline our general product direction.

More information

Building E-Business Suite Interfaces using BPEL. Asif Hussain Innowave Technology

Building E-Business Suite Interfaces using BPEL. Asif Hussain Innowave Technology Building E-Business Suite Interfaces using BPEL Asif Hussain Innowave Technology Agenda About Innowave Why Use BPEL? Synchronous Vs Asynchronous BPEL Adapters Process Activities Building EBS Interfaces

More information

Run Stateful Apps on Kubernetes with PKS: Highlight WebLogic Server

Run Stateful Apps on Kubernetes with PKS: Highlight WebLogic Server CNA2009BU Run Stateful Apps on Kubernetes with PKS: Highlight WebLogic Server Rahul Srivastava, VMware, Inc. Simone Morellato, VMware, Inc. #vmworld #CNA2009BU Disclaimer This presentation may contain

More information

Enterprise Manager Cloud Control 12c Release2 ( ) Installation

Enterprise Manager Cloud Control 12c Release2 ( ) Installation Enterprise Manager Cloud Control 12c Release2 (12.1.0.2) Installation 1 Agenda Facts about EM 12.1.0.2 EM12.1.0.2 Binaries New in EM 12.1.0.2 Install Installation Types and Methods Step by step demo Log

More information

Oracle GoldenGate Upgrading to Oracle GoldenGate Monitor

Oracle GoldenGate Upgrading to Oracle GoldenGate Monitor Oracle GoldenGate Upgrading to Oracle GoldenGate Monitor 12.2.1.2 E85754-02 November 2017 Oracle GoldenGate Upgrading to Oracle GoldenGate Monitor 12.2.1.2, E85754-02 Copyright 2015, 2017, Oracle and/or

More information

Moving Forward with Oracle Forms

Moving Forward with Oracle Forms Moving Forward with Oracle Forms What Now? What Next? Mia Urman @miaurman miaurman@oraplayer.com Who am I Mia Urman CEO, OraPlayer - Oracle Development Expert Oracle Development Geek for 14 years. 7 years

More information

... Oracle E-Business Suite installation and upgrade to on IBM Power S824 with POWER8 processors and AIX 7.1

... Oracle E-Business Suite installation and upgrade to on IBM Power S824 with POWER8 processors and AIX 7.1 Oracle E-Business Suite 12.2.0 installation and upgrade to 12.2.4 on IBM Power S824 with POWER8 processors and AIX 7.1........ Ravisankar Shanmugam Kishore Radhakrishna IBM Oracle International Competency

More information

12.1 Multitenancy in real life

12.1 Multitenancy in real life 12.1 Multitenancy in real life 2017 HOUG szakmai nap Jozsef Horvath Budapest, 2017-11-08 Disclaimer This presentation: Does not intend to judge Oracle Multitenancy Does not intent to judge Oracle Corporation

More information

<Insert Picture Here> Get the best out of Oracle Scheduler: Learn how you can leverage Scheduler for enterprise scheduling

<Insert Picture Here> Get the best out of Oracle Scheduler: Learn how you can leverage Scheduler for enterprise scheduling 1 Get the best out of Oracle Scheduler: Learn how you can leverage Scheduler for enterprise scheduling Vira Goorah (vira.goorah@oracle.com) Oracle Principal Product Manager Agenda

More information

X100 ARCHITECTURE REFERENCES:

X100 ARCHITECTURE REFERENCES: UNION SYSTEMS GLOBAL This guide is designed to provide you with an highlevel overview of some of the key points of the Oracle Fusion Middleware Forms Services architecture, a component of the Oracle Fusion

More information

Real Application Security Administration

Real Application Security Administration Oracle Database Real Application Security Administration Console (RASADM) User s Guide 12c Release 2 (12.2) E85615-01 June 2017 Real Application Security Administration Oracle Database Real Application

More information

Oracle Transportation Management. Migration Guide Release Part No. E

Oracle Transportation Management. Migration Guide Release Part No. E Oracle Transportation Management Migration Guide Release 6.4.3 Part No. E92129-02 February 2018 Copyright Notice Oracle Transportation Management Migration Guide, Release 6.4.3 Part No. E92129-02 This

More information

Oracle Fusion Middleware Upgrading Oracle Data Integrator. 12c ( )

Oracle Fusion Middleware Upgrading Oracle Data Integrator. 12c ( ) Oracle Fusion Middleware Upgrading Oracle Data Integrator 12c (12.2.1.3) E95535-01 May 2018 Oracle Fusion Middleware Upgrading Oracle Data Integrator, 12c (12.2.1.3) E95535-01 Copyright 2015, 2018, Oracle

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Upgrading Oracle Data Integrator 12c (12.2.1.2) E77902-02 November 2016 Documentation for installers and system administrators that describes how to upgrade Oracle Data Integrator

More information

Oracle ILM Assistant Installation Guide Version 1.4

Oracle ILM Assistant Installation Guide Version 1.4 Oracle ILM Assistant Installation Guide Version 1.4 This document provides instructions for installing and running Oracle Information Lifecycle Management (ILM) Assistant. Version: 1.4 Oracle Corporation

More information

An Overview of FMW MapViewer

An Overview of FMW MapViewer An Overview of FMW MapViewer Agenda What is MapViewer Select Features Getting Started Additional Resources 2 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Oracle

More information

ebusiness Suite goes SOA

ebusiness Suite goes SOA ebusiness Suite goes SOA Ulrich Janke Oracle Consulting Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not

More information

Alain Fuhrer Oracle Database Administrator Swiss Mobiliar Insurance

Alain Fuhrer Oracle Database Administrator Swiss Mobiliar Insurance to Oracle Database 12.2 Real World Cases Mike Dietrich Master Product Manager Database s & Migrations Oracle Corporation Alain Fuhrer Oracle Database Administrator Swiss Mobiliar Insurance Presented with

More information

Oracle SQL Developer & REST Data Services

Oracle SQL Developer & REST Data Services Oracle SQL Developer & REST Data Services What s New Jeff Smith Senior Principal Product Manager Database Development Tools Jeff.d.smith@oracle.com @thatjeffsmith http://www.thatjeffsmith.com Agenda New

More information

Multi-byte Character Support Oracle FLEXCUBE Universal Banking Release [May] [2018]

Multi-byte Character Support Oracle FLEXCUBE Universal Banking Release [May] [2018] Multi-byte Character Support Oracle FLEXCUBE Universal Banking Release 14.1.0.0.0 [May] [2018] Contents 1. INTRODUCTION... 3 1.1 BACKGROUND... 3 1.2 APPROACH... 3 1. Introduction Oracle FLEXCUBE Universal

More information

Upgrade Oracle Applications from to R12.1.1

Upgrade Oracle Applications from to R12.1.1 Upgrade Oracle Applications from 11.5.10.2 to R12.1.1 System Overview Version 11.5.10.2 Oracle Applications Vision Instance OS: Redhat Linux 4 update 5 Type: Single Node instance Applications OS User 11i

More information

Oracle Tuning Pack. Table Of Contents. 1 Introduction. 2 Installation and Configuration. 3 Documentation and Help. 4 Oracle SQL Analyze

Oracle Tuning Pack. Table Of Contents. 1 Introduction. 2 Installation and Configuration. 3 Documentation and Help. 4 Oracle SQL Analyze Oracle Tuning Pack Readme Release 2.1.0.0.0 for Windows February 2000 Part No. A76921-01 Table Of Contents 1 Introduction 2 Installation and Configuration 3 Documentation and Help 4 Oracle SQL Analyze

More information

Kyle Benson. PeopleSoft Administrator. Oracle ACE 10+ years in PeopleSoft. Automation/DPK Life Cycle Management Fluid Navigation

Kyle Benson. PeopleSoft Administrator. Oracle ACE 10+ years in PeopleSoft. Automation/DPK Life Cycle Management Fluid Navigation PEEK-A-BOO...I CPU Kyle Benson PeopleSoft Administrator Automation/DPK Life Cycle Management Fluid Navigation Oracle ACE 10+ years in PeopleSoft psadmin.io Blog Podcast Community Training Coaching Agenda

More information

Ensuring Optimal Performance. Vivek Sharma. 3 rd November 2012 Sangam 2012

Ensuring Optimal Performance. Vivek Sharma. 3 rd November 2012 Sangam 2012 Ensuring Optimal Performance Vivek Sharma 3 rd November 2012 Sangam 2012 Who am I? Around 12 Years using Oracle Products Certified DBA versions 8i Specializes in Performance Optimization COE Lead with

More information

Road to SOA Suite 12c. Upgrading SOA / BPM Suite from 11g to 12c

Road to SOA Suite 12c. Upgrading SOA / BPM Suite from 11g to 12c Road to SOA Suite 12c Upgrading SOA Suite from 11g to 12c OPITZ CONSULTING GmbH 2014 Seite 1 Road to SOA Suite 12c Upgrading SOA Suite from 11g to 12c Danilo Schmiedel Solution Architect Oracle ACE Director

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Quick Installation Guide for Oracle Identity Management 11g Release 1 (11.1.1) E10033-01 May 2009 This guide is designed to help you quickly install the most common Oracle Identity

More information

ORACLE HYPERION PART LIST FILE

ORACLE HYPERION PART LIST FILE 25 April, 2018 ORACLE HYPERION PART LIST FILE Document Filetype: PDF 222.13 KB 0 ORACLE HYPERION PART LIST FILE Finit Solutions has been working with what was once simply "Hyperion" and is now known as

More information

R12 Upgrade Best Practices & Tips to Reduce Downtime

R12 Upgrade Best Practices & Tips to Reduce Downtime R12 Upgrade Best Practices & Tips to Reduce Downtime Ramam Kallakuri Managing Principal Consultant Apps Associates June 09, 2014 Copyright 2014. Apps Associates LLC. 1 Speakers Bio Ramam Kallakuri Managing

More information

Oracle WebLogic Server 11g: Administration Essentials

Oracle WebLogic Server 11g: Administration Essentials Oracle University Contact Us: +33 (0) 1 57 60 20 81 Oracle WebLogic Server 11g: Administration Essentials Duration: 5 Days What you will learn This Oracle WebLogic Server 11g: Administration Essentials

More information

Oracle Fusion Middleware Understanding Interoperability and Compatibility. 12c ( )

Oracle Fusion Middleware Understanding Interoperability and Compatibility. 12c ( ) Oracle Fusion Middleware Understanding Interoperability and Compatibility 12c (12.2.1.3.0) E95621-01 May 2018 Oracle Fusion Middleware Understanding Interoperability and Compatibility, 12c (12.2.1.3.0)

More information

Copyright 2014, Oracle and/or its affiliates. All rights reserved.

Copyright 2014, Oracle and/or its affiliates. All rights reserved. 1 Enterprise Manager 12c Compliance Management Part 1 Overview 2 3 Agenda Compliance Overview Understanding Compliance Results Understanding Compliance Score Calculation Compliance Related Roles and Privileges

More information

Oracle 1Z Oracle Database 11g: Administration I. Download Full Version :

Oracle 1Z Oracle Database 11g: Administration I. Download Full Version : Oracle 1Z0-052 Oracle Database 11g: Administration I Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-052 D. Functionbased index Answer: A QUESTION: 191 The user HR owns the EMP

More information

Books by Michael R. Ault

Books by Michael R. Ault Michael R. Ault Oracle Guru The Myth of Database Independence Mike Ault Oracle Guru Texas Memory Systems - Nuclear Navy 6 years - Nuclear Chemist/Programmer 10 years - Kennedy Western University Graduate

More information

It s here and online patching works great!! Oracle has released R12.2 in September 2013 long awaited release, oracle spent a lot of time in developing Online patching to avoid long downtime windows for

More information

Oracle Directory Services 11g: Administration

Oracle Directory Services 11g: Administration Oracle University Contact Us: 0180-2000-526 / +49 89-14301200 Oracle Directory Services 11g: Administration Duration: 5 Days What you will learn After completing this course, you should be able to perform

More information

W H I T E P A P E R : T E C H N I C AL. Symantec High Availability Solution for Oracle Enterprise Manager Grid Control 11g and Cloud Control 12c

W H I T E P A P E R : T E C H N I C AL. Symantec High Availability Solution for Oracle Enterprise Manager Grid Control 11g and Cloud Control 12c W H I T E P A P E R : T E C H N I C AL Symantec High Availability Solution for Oracle Enterprise Manager Grid Control 11g and Cloud Control 12c Table of Contents Symantec s solution for ensuring high availability

More information

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites Oracle Database Real Application Security Administration 12c Release 1 (12.1) E61899-04 May 2015 Oracle Database Real Application Security Administration (RASADM) lets you create Real Application Security

More information

CO Oracle WebLogic Server 12c. Administration II. Summary. Introduction. Prerequisites. Target Audience. Course Content.

CO Oracle WebLogic Server 12c. Administration II. Summary. Introduction. Prerequisites. Target Audience. Course Content. CO-80153 Oracle WebLogic Server 12c: Administration II Summary Duration 5 Days Audience Administrators, Java EE Developers, Security Administrators, System Administrators, Technical Administrators, Technical

More information

Auditing The Oracle Database

Auditing The Oracle Database Auditing The Oracle Database PFCATK A Toolkit to Help 1 Legal Notice Auditing The Oracle Database Published by PeteFinnigan.com Limited 9 Beech Grove Acomb York England, YO26 5LD Copyright 2017 by PeteFinnigan.com

More information

Exam : 1Z Oracle Database 11g: New Features for Administrators. Title : Version : Demo. The safer, easier way to help you pass any IT exams.

Exam : 1Z Oracle Database 11g: New Features for Administrators. Title : Version : Demo. The safer, easier way to help you pass any IT exams. http://www.51- pass.com Exam : 1Z1-050 Title : Oracle Database 11g: New Features for Administrators Version : Demo 1 / 7 1. You are managing the APPPROD database as a DBA. You plan to duplicate this database

More information

What every DBA needs to know about JDBC connection pools Bridging the language barrier between DBA and Middleware Administrators

What every DBA needs to know about JDBC connection pools Bridging the language barrier between DBA and Middleware Administrators Presented at What every DBA needs to know about JDBC connection pools Bridging the language barrier between DBA and Middleware Administrators Jacco H. Landlust Platform Architect Director Oracle Consulting

More information

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written.

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written. Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor Co-author: Duncan Mills, Oracle Moral Don t get

More information