Oracle Database 10g: Implement and Administer a Data Warehouse

Size: px
Start display at page:

Download "Oracle Database 10g: Implement and Administer a Data Warehouse"

Transcription

1 Oracle Database 10g: Implement and Administer a Data Warehouse Student Guide Volume 1 D18957GC10 Edition 1.0 November 2005 D22685

2 Authors Donna Keesling Jean Francois Verrier Jim Womack Technical Contributors and Reviewers Hermann Baer Herbert Bradbury Harald van Breederode Joel Goodman Paul Lane Jim Spiller Andreas Walter Mark van de Wiel Editors Arijit Ghosh Atanu Raychaudhuri Graphic Designers James Hans Samir Mozumdar Copyright 2005, Oracle. All rights reserved. Disclaimer This document contains proprietary information and is protected by copyright and other intellectual property laws. You may copy and print this document solely for your own use in an Oracle training course. The document may not be modified or altered in any way. Except where your use constitutes "fair use" under copyright law, you may not use, share, download, upload, copy, print, display, perform, reproduce, publish, license, post, transmit, or distribute this document in whole or in part without the express authorization of Oracle. The information contained in this document is subject to change without notice. If you find any problems in the document, please report them in writing to: Oracle University, 500 Oracle Parkway, Redwood Shores, California USA. This document is not warranted to be error-free. Restricted Rights Notice If this documentation is delivered to the United States Government or anyone using the documentation on behalf of the United States Government, the following notice is applicable: U.S. GOVERNMENT RIGHTS The U.S. Government s rights to use, modify, reproduce, release, perform, display, or disclose these training materials are restricted by the terms of the applicable Oracle license agreement and/or the applicable U.S. Government contract. Trademark Notice Oracle, JD Edwards and PeopleSoft are registered trademarks of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Publisher Giri Venugopal

3 Contents Preface 1 Data Warehouse Design Objectives 1-2 Characteristics of a Data Warehouse 1-3 Comparing OLTP and Data Warehouses 1-4 Data Warehouse Architectures 1-6 Data Warehouse Design 1-9 Logical Design 1-10 Oracle Warehouse Builder 1-12 Data Warehousing Schemas 1-13 Schema Characteristics 1-14 Data Warehousing Objects 1-16 Fact Tables 1-17 Dimensions and Hierarchies 1-18 Physical Design 1-20 Data Warehouse Physical Structures 1-21 Managing Large Volumes of Data 1-23 I/O Performance in Data Warehouses 1-24 Performance of Sequential I/Os 1-25 Minimizing I/O Requests 1-26 I/O Scalability 1-30 Typical Data Warehouse Cluster 1-35 Parallel Execution with RAC 1-36 Summary Data Warehouse Schemas Objectives 2-2 Star Schema Model 2-3 Snowflake Schema Model 2-5 Creating Dimensions 2-7 Creating Hierarchy Relationships 2-8 Third Normal Form Schemas 2-9 Tuning Star Queries 2-10 Star Transformation 2-11 Contrasting Star Transformation and Conventional Joins 2-12 Star Transformation Hints 2-13 Star Query: Example 2-14 Star Transformation: Rewrite Example 2-15 Star Transformation Execution Plan 2-17 Retrieving Fact Rows from One Dimension 2-18 Retrieving Fact Rows from All Dimensions 2-19 iii

4 Joining the Result Set with Dimensions 2-20 Star Transformation: Further Optimization 2-21 Bitmap Index Storage Performance 2-22 Static Partition Pruning and Star Query 2-23 Static Partition Pruning Plan: Example 2-24 Dynamic Partition Pruning and Star Query 2-25 Dynamic Partition Pruning Determination 2-26 Summary 2-27 Practice 2: Overview Partitioning Basics Objectives 3-2 Partitioned Tables and Indexes 3-3 Manageability: Rolling Window Operations 3-4 Benefits of Partitioning: Performance Considerations 3-5 Performance Consideration: Partition Pruning 3-6 Table Versus Index Partitioning 3-7 Partitioning Methods 3-8 CREATE TABLE Statement with Partitioning 3-10 Logical and Physical Attributes 3-11 Partitioning Type 3-12 Specifying Partition Attributes 3-13 Partition Key Value 3-14 Range Partitioning 3-15 Range Partitioning: Example 3-16 List Partitioning 3-17 Hash Partitioning, Named Partitions 3-18 Hash-Range Partitioning 3-19 Range-List Partitioning 3-20 Composite Partitioning Using a Template 3-21 Composite Partitioning and Template: Example 3-22 Partition Extended Table Names 3-23 Create Partitions with Enterprise Manager 3-24 Equipartitioning 3-25 Full Partitionwise Joins 3-26 Partial Partitionwise Joins 3-27 Summary 3-28 Practice 3: Overview Extraction, Transformation, and Loading (ETL): Extraction and Transportation Objectives 4-2 Overview 4-3 What Is ETL? 4-4 Extraction Methods 4-6 iv

5 Logical Extraction Methods 4-7 Physical Extraction Methods 4-9 Offline Extraction 4-10 Implementing Methods of Extraction 4-11 Incremental Extraction Using CDC 4-13 Publish and Subscribe Model 4-14 Synchronous CDC 4-18 Asynchronous CDC 4-19 Asynchronous AutoLog Mode 4-20 Asynchronous HotLog Configuration 4-22 Asynchronous Distributed HotLog Mode 4-23 Preparing to Publish Change Data 4-24 Creating a Publisher User 4-25 Synchronous Publishing 4-27 Asynchronous Distributed HotLog Publishing 4-29 Subscribing to Change Data 4-39 Asynchronous Distributed HotLog Source Database Initialization Parameters 4-43 Asynchronous Distributed HotLog Staging Database Initialization Parameters 4-45 Data Dictionary Views Supporting CDC 4-46 Transportation in a Data Warehouse 4-47 Transportable Tablespaces 4-48 Transportable Tablespaces: Example 4-50 Summary 4-52 Practice 4: Overview Extraction, Transformation, and Loading (ETL): Loading Objectives 5-2 Data-Loading Mechanisms 5-3 Loading Mechanisms 5-4 SQL*Loader: Example 5-5 Loading Mechanisms 5-6 Applications of External Tables 5-7 Example of Defining External Tables 5-9 Populating External Tables with Data Pump 5-11 Privileges for External Tables 5-12 Defining External Tables Using SQL*Loader 5-13 Data Dictionary Information for External Tables 5-14 Changing External Data Properties 5-16 Other Loading Methods 5-18 Summary 5-19 Practice 5: Overview Extraction, Transformation, and Loading (ETL): Transformation Objectives 6-2 Data Transformation 6-3 v

6 Multistage Data Transformation 6-4 Pipelined Data Transformation 6-5 Transformation Mechanisms 6-6 Transformation Using SQL 6-7 CREATE TABLE AS SELECT and UPDATE 6-8 MERGE Statement: Overview 6-10 Data Warehousing MERGE: Example 6-11 Data Maintenance with MERGE/DELETE 6-12 Overview of Multitable INSERT Statements 6-13 Example of Unconditional INSERT 6-14 Example of Conditional ALL INSERT 6-15 Example of Pivoting INSERT 6-16 Example of Conditional FIRST INSERT 6-17 Overview of Table Functions 6-18 Creating Table Functions 6-19 Using Table Functions 6-21 DML Error Logging: Overview 6-22 DML Error Logging Concepts 6-23 Error-Logging Table 6-25 Error-Logging Table Format 6-27 Inserting into a Table with Error Logging 6-28 Summary 6-29 Practice 6: Overview Parallelism Concepts Objectives 7-2 Introduction to Parallel Execution 7-3 Operations That Can Be Parallelized 7-4 How Parallel Execution Works 7-5 The Granule 7-6 Parallel Operations 7-7 Parallel Execution with Real Application Clusters 7-8 How Parallel Execution Servers Communicate 7-9 Degree of Parallelism (DOP) 7-10 Default Degree of Parallelism 7-11 Parallel Execution Plan 7-12 OTHER_TAG Column 7-13 Serial and Parallel Execution Plans 7-14 Parallel Plan Interpretation 7-15 Parallel Execution Server Pool 7-20 Minimum Number of Parallel Execution Servers 7-21 Object s PARALLEL Clause 7-22 PARALLEL Clause: Examples 7-23 vi

7 Enabling Parallel DML/DDL/QUERY 7-24 Using Parallelization Hints 7-26 Parallelization Rules 7-27 Summary 7-28 Practice 7: Overview Parallel Operations in Data Warehouses Objectives 8-2 Parallel Query 8-3 Parallel Partitioned Table Scan 8-4 Parallel Partitioned Index Scan 8-5 Partitionwise Joins 8-6 Parallel DDL 8-7 Creating Indexes in Parallel 8-8 Parallel DDL: Example 8-11 Parallel DML: Overview 8-12 Performance Benefits of Parallel DML 8-13 Enabling Parallel DML 8-14 Parallel DML: Example 8-15 When to Use Parallel DML 8-16 Restrictions on Parallel DML 8-18 Tuning Parameters for Parallel Execution 8-19 Using Default Parameter Settings 8-20 Balancing the Workload 8-21 Adaptive Multiuser and DOP 8-23 Resource Manager and the DOP 8-24 Are There Execution Problems? 8-26 Data Distribution and V$PQ_TQSTAT 8-27 Using Other Dynamic Performance Views 8-29 Using V$PX_SESSION 8-31 Using V$PX_SESSTAT 8-32 Using V$PX_PROCESS 8-33 Using V$SYSSTAT 8-34 Tuning PDML 8-36 Summary 8-37 Practice 8: Overview Materialized Views Objectives 9-2 The Need for Summary Management 9-3 Full Notes Page 9-4 Using Summaries to Improve Performance 9-5 Using Summaries 9-6 Using Materialized Views for Summary Management 9-7 vii

8 Summary Management Components 9-9 Using Summary Management 9-10 How Many Materialized Views? 9-11 One Materialized View for Multiple Queries 9-12 Determining Which Materialized View to Create 9-15 Types of Materialized Views 9-16 The Need for Nested Materialized Views 9-17 Using Nested Materialized Views 9-18 Nested Materialized Views: Restrictions 9-19 Materialized View: Example 9-20 Materialized Views Storage 9-21 Estimating Materialized View Size 9-22 Specifying Build Methods 9-23 Specifying Refresh Options 9-24 Specifying Refresh Execution Modes 9-25 Using Column Aliases in Materialized Views 9-26 Using Materialized View Column Alias Lists 9-27 Registering User-Defined Materialized View Tables 9-28 Partitioning and Materialized Views 9-29 Partitioned Materialized View: Example 9-30 Using Enterprise Manager to Create Materialized Views 9-31 Privileges Required to Create Materialized Views 9-32 Additional Privileges Required to Create Materialized Views 9-33 Globalization and Materialized Views 9-34 Globalization Parameters Significant for Materialized Views 9-35 Adding Comments to Materialized Views 9-36 Altering Materialized Views 9-37 Maintaining Partitions of a Materialized View 9-39 Dropping Materialized Views 9-40 Viewing Staleness Information 9-41 Materialized View Integrity 9-42 Invalidating Materialized Views 9-43 Summary 9-44 Practice 9: Overview Dimensions Objectives 10-2 What Are Dimensions? 10-3 Dimensions and Hierarchies 10-4 Dimension Table: Example 10-6 Benefits of Dimensions 10-7 Defining Dimensions and Hierarchies 10-8 Specifying the SKIP WHEN NULL Clause 10-9 Creating Dimensions Using Enterprise Manager viii

9 Dimensions Based on Multiple Tables Dimensions with Multiple Hierarchies Dimensions and Privileges Dimension Restrictions Using VALIDATE_DIMENSION to Verify Relationships in a Dimension Verifying Relationships in a Dimension Viewing Dimensions Using Enterprise Manager Viewing Dimensions in the Data Dictionary Viewing the Definition of a Dimension Dimension Invalidation Dropping Dimensions Selectively Dropping Dimension Components Constraints or Dimensions? Summary Practice 10: Overview Refreshing Materialized Views Objectives 11-2 Refresh Options 11-3 Refresh Modes 11-5 Refresh at Scheduled Time 11-6 Manual Refresh Using DBMS_MVIEW 11-7 Refresh Specific Materialized Views with REFRESH 11-9 Refresh All Materialized Views with REFRESH_ALL_MVIEWS Refresh Dependent Materialized Views with REFRESH_DEPENDENT Finding Dependent Materialized Views When Does a Complete Refresh Occur? Conditions That Effect Possibility of Fast Refresh Explain Materialized View Using DBMS_MVIEW.EXPLAIN_MVIEW Materialized View Logs: General Concepts Creating a Materialized View Log Restrictions for Fast-Refreshable Materialized Views Indexes and Fast-Refreshable Materialized Views Specifying REFRESH FORCE Partition Change Tracking (PCT) Refresh PCT Refresh Requirements When Is PCT Refresh Used? Partition Key or Partition Marker? PCT Using ROWID Consider Fresh: Fastest Refresh Scenario CONSIDER FRESH Refresh Implications General Tips for Materialized View Refresh Refresh Tips for Nested Materialized Views ix

10 Summary Practice 11: Overview Query Rewrite Objectives 12-2 Query Rewrite: Overview 12-3 Cost-Based Query Rewrite Process 12-4 What Can Be Rewritten? 12-5 Setting Initialization Parameters for Query Rewrite 12-6 Using Trusted Constraints 12-8 Enabling Query Rewrite 12-9 Query Rewrite Requirements Query Rewrite Hints Did Query Rewrite Occur? Verifying That Query Rewrite Occurred Using DBMS_MVIEW.EXPLAIN_REWRITE Query Rewrite Methods Text Match Rewrite Methods Expression Matching Query Rewrite Expression Matching: Example General Query Rewrite Methods Partition Change Tracking (PCT) and Query Rewrite PCT and Query Rewrite: Example Query Rewrite and Bind Variables Creating Indexes for Materialized Views Query Rewrite Restrictions Summary Practice 12: Overview Using the SQL Access Advisor Objectives 13-2 What Does the SQL Access Advisor Do? 13-3 SQL Access Advisor: Overview 13-4 SQL Access Advisor: Usage Model 13-6 Possible Recommendations 13-7 Using the SQL Access Advisor 13-8 SQL Access Advisor Repository 13-9 Privileges Needed to Use the SQL Access Advisor Invoking the SQL Access Advisor Wizard Setting Initial Options Specifying the Workload Source Specifying Recommendation Options Viewing Results Reviewing Recommendations x

11 Using the DBMS_ADVISOR Package SQL Access Advisor Procedure Flow Creating a Task Setting SQL Access Advisor Parameters Using Templates Setting Template Parameters Using a Template to Create a Task Defining the Workload Defining Workload Contents Importing a SQL Tuning Set Loading User-Defined Workloads Loading SQL Cache Workloads Using Hypothetical Workloads Adding SQL Statements to a Workload Removing Workloads Linking the Workload to a Task Generating Recommendations Viewing and Implementing Recommendations SQL Access Advisor Actions Generating SQL Scripts Performing a Quick Tune Tuning Materialized Views for Fast Refresh and Query Rewrite Using DBMS_ADVISOR.TUNE_MVIEW TUNE_MVIEW Output Results Implementation Process Output Undo Process Output Accessing TUNE_MVIEW Output Results Summary Practice 13: Overview System Management Tasks and Techniques Objectives 14-2 Are There Execution Problems? 14-3 Performance Monitoring and Tuning 14-4 Statistics Collection 14-5 End to End Application Tracing 14-6 End to End Application Tracing Using EM 14-7 Compression 14-8 What Can Be Compressed? Compression: Examples Maximizing Compression Ratios Resumable Sessions Data Warehouse Backup and Recovery Recovery Time Objective (RTO) xi

12 Recovery Point Objective (RPO) More Backup and Recovery Considerations Backup and Recovery Tools Backup and Recovery: Best Practices NOLOGGING Backup and Recovery Strategies Employing Incremental Backups Data Warehouse Security Layered Security Model Transparent Data Encryption Implementing TDE Summary Practice 14: Overview Appendix A: Practices Appendix B: Solutions xii

Oracle Database 11g: Administer a Data Warehouse

Oracle Database 11g: Administer a Data Warehouse Oracle Database 11g: Administer a Data Warehouse Duration: 4 Days What you will learn This course will help you understand the basic concepts of administering a data warehouse. You'll learn to use various

More information

Oracle Database 10g: New Features for Release 2 Overview Seminar

Oracle Database 10g: New Features for Release 2 Overview Seminar Oracle Database 10g: New Features for Release 2 Overview Seminar Student Guide D22139GC10 Edition 1.0 November 2005 D22563 Authors Christine Jeal Jean-Francois Verrier Technical Contributors and Reviewers

More information

Oracle Database 11g: SQL Tuning Workshop. Student Guide

Oracle Database 11g: SQL Tuning Workshop. Student Guide Oracle Database 11g: SQL Tuning Workshop Student Guide D52163GC10 Edition 1.0 June 2008 Author Jean-François Verrier Technical Contributors and Reviewers Muriel Fry (Special thanks) Joel Goodman Harald

More information

Oracle SQL Tuning for Developers Workshop Student Guide - Volume I

Oracle SQL Tuning for Developers Workshop Student Guide - Volume I Oracle SQL Tuning for Developers Workshop Student Guide - Volume I D73549GC10 Edition 1.0 October 2012 D78799 Authors Sean Kim Dimpi Rani Sarmah Technical Contributors and Reviewers Nancy Greenberg Swarnapriya

More information

Oracle Database 10g: Data Guard Administration

Oracle Database 10g: Data Guard Administration Oracle Database 10g: Data Guard Administration Volume I Student Guide D17316GC20 Edition 2.0 October 2006 D47657 Author Donna K. Keesling Technical Contributors and Reviewers Christopher D. Andrews Harald

More information

Oracle Warehouse Builder 10g: Administration

Oracle Warehouse Builder 10g: Administration Oracle Warehouse Builder 10g: Administration Volume I Student Guide D44810GC10 Edition 1.0 January 2007 D49160 Authors Puja Singh Richard Green Technical Contributors and Reviewers David Allan Sharath

More information

Oracle Database 12c: Install and Upgrade Workshop

Oracle Database 12c: Install and Upgrade Workshop Oracle Database 12c: Install and Upgrade Workshop Student Guide D77766GC10 Edition 1.0 July 2013 D82686 Authors Donna Keesling Dominique Jeunot James Spiller Technical Contributors and Reviewers Roy Swonger

More information

Oracle Database 10g: Implementing Database Vault

Oracle Database 10g: Implementing Database Vault Oracle Database 10g: Implementing Database Vault Student Guide D44719GC10 Edition 1.0 August 2006 D47175 Authors Tom Best James Spiller Technical Contributors and Reviewers Tom Bolick Harald van Breederode

More information

Oracle Warehouse Builder 10g: New Features

Oracle Warehouse Builder 10g: New Features Oracle Warehouse Builder 10g: New Features Volume I - Student Guide D44808GC10 Edition 1.0 July 2006 D46761 Author Richard Green Technical Contributors and Reviewers David Allan Herbert Bradbury Sharath

More information

Oracle Database 11g: Backup and Recovery Workshop

Oracle Database 11g: Backup and Recovery Workshop Oracle Database 11g: Backup and Recovery Workshop Student Guide D71862GC10 Edition 1.0 March 2011 D72508 Authors Donna Keesling James Spiller Technical Contributors and Reviewers Christopher D. Andrews

More information

Oracle Database 10g: SQL Fundamentals I

Oracle Database 10g: SQL Fundamentals I Oracle Database 10g: SQL Fundamentals I Student Guide Volume I D17108GC21 Edition 2.1 December 2006 D48183 Authors Chaitanya Koratamaddi Nancy Greenberg Technical Contributors and Reviewers Wayne Abbott

More information

Oracle Warehouse Builder 10g: Implementation Part 2

Oracle Warehouse Builder 10g: Implementation Part 2 Oracle Warehouse Builder 10g: Implementation Part 2 Student Guide D18396GC10 Edition 1.0 June 2006 D46564 Authors Molly Correa Richard Green Technical Contributors and Reviewers David Allan Sharath.Bhujani

More information

MySQL Performance Tuning

MySQL Performance Tuning MySQL Performance Tuning Student Guide D61820GC20 Edition 2.0 May 2011 D73030 Author Jeff Gorton Copyright 2011, Oracle and/or it affiliates. All rights reserved. Disclaimer Technical Contributors and

More information

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle BI 11g R1: Build Repositories Volume I - Student Guide D63514GC11 Edition 1.1 June 2011 D73309 Author Jim Sarokin Technical Contributors and Reviewers Marla Azriel Roger Bolsius Bob Ertl Alan Lee

More information

Oracle Database 12c: SQL Tuning for Developers

Oracle Database 12c: SQL Tuning for Developers Oracle Database 12c: SQL Tuning for Developers Student Guide Volume I D79995GC10 Edition 1.0 December 2016 D84109 Learn more from Oracle University at education.oracle.com Author Dimpi Rani Sarmah Technical

More information

Oracle TimesTen 7.0: IMDB, Cache Connect, and Replication Volume I Student Guide

Oracle TimesTen 7.0: IMDB, Cache Connect, and Replication Volume I Student Guide Oracle TimesTen 7.0: IMDB, Cache Connect, and Replication Volume I Student Guide D46789GC10 Edition 1.0 April 2007 D50237 Author Danny Lau Technical Contributors and Reviewers Rohan Aranha David Aspinwall

More information

Oracle Data Integrator: Administration and Development Volume I Student Guide

Oracle Data Integrator: Administration and Development Volume I Student Guide Oracle Data Integrator: Administration and Development Volume I Student Guide D48459GC30 Edition 3.0 December 2007 D53463 Authors Laura Hofman Miquel FX Nicolas Technical Contributor and Reviewer Sharath

More information

Oracle Application Server 10g R2: Administration II

Oracle Application Server 10g R2: Administration II Oracle Application Server 10g R2: Administration II Student Guide Volume 1 D16509GC30 Edition 3.0 October 2006 D47633 Authors Ramaa Mani Shankar Raman Technical Contributors and Reviewers Celia Antonio

More information

Oracle Service Bus 10g R3: Design & Integrate Services for SOA

Oracle Service Bus 10g R3: Design & Integrate Services for SOA Oracle Service Bus 10g R3: Design & Integrate Services for SOA Student Guide D56299GC11 Edition 1.1 November 2010 D69834 Authors Bill Bunch Tom Hardy Technical Contributors and Reviewer s Werner Bauer

More information

Oracle Database 10g: Using OLAP

Oracle Database 10g: Using OLAP Oracle Database 10g: Using OLAP Student Guide D17505GC20 Production 2.0 April 2006 D45765 Authors Brian Pottle Kevin Lancaster Nancy Greenberg Technical Contributors and Reviewers Stuart Bunby Marty Gubar

More information

Oracle Database 11g: Data Guard Administration

Oracle Database 11g: Data Guard Administration D52161GC30 Edition 3.0 May 2010 D67578 Oracle Database 11g: Data Guard Administration Student Guide Authors Mark Fuller Donna K. Keesling Technical Contributors and Reviewers Todd Bao Harald van Breederode

More information

Oracle Data Integrator 11g: Integration and Administration Student Guide - Volume I

Oracle Data Integrator 11g: Integration and Administration Student Guide - Volume I Oracle Data Integrator 11g: Integration and Administration Student Guide - Volume I D64974GC20 Edition 2.0 September 2012 D78954 Author Richard Green Technical Contributors and Reviewers Alex Kotopoulis

More information

Oracle Database 11g: Oracle Secure Backup

Oracle Database 11g: Oracle Secure Backup Oracle Database 11g: Oracle Secure Backup Volume I Student Guide D57258GC10 Edition 1.0 March 2009 Part Number Author Maria Billings Technical Contributors and Reviewers Christian Bauwens Donna Cooksey

More information

Oracle WebLogic Server 12c: JMS Administration Student Guide

Oracle WebLogic Server 12c: JMS Administration Student Guide Oracle WebLogic Server 12c: JMS Administration Student Guide D80844GC10 Edition 1.0 July 2013 D82749 Author TJ Palazzolo Technical Contributors and Reviewers Bill Bell Mark Lindros Will Lyons Tom Barnes

More information

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database 11g: SQL Fundamentals I Volume I Student Guide D49996GC11 Edition 1.1 April 2009 D59980 Authors Puja Singh Brian Pottle Technical Contributors and Reviewers Claire Bennett Tom Best Purjanti

More information

Oracle TimesTen 6.0: Core Concepts and Administration Volume I - Student Guide

Oracle TimesTen 6.0: Core Concepts and Administration Volume I - Student Guide Oracle TimesTen 6.0: Core Concepts and Administration Volume I - Student Guide D21723GC20 Production 2.0 July 2006 D46774 Author Danny Lau Technical Contributors and Reviewers David Aspinwall Percy Chan

More information

Oracle Hyperion Data Relationship Management Administration Activity Guide

Oracle Hyperion Data Relationship Management Administration Activity Guide Oracle Hyperion Data Relationship Management 11.1.1 Administration Activity Guide D56817GC10 Edition 1.0 April 2009 D59184 Authors Jody Glover Sergiy Pecherskyy Technical Contributors and Reviewers Matt

More information

Analytics: Server Architect (Siebel 7.7)

Analytics: Server Architect (Siebel 7.7) Analytics: Server Architect (Siebel 7.7) Student Guide June 2005 Part # 10PO2-ASAS-07710 D44608GC10 Edition 1.0 D44917 Copyright 2005, 2006, Oracle. All rights reserved. Disclaimer This document contains

More information

Oracle Database 10g: New Manageability Features

Oracle Database 10g: New Manageability Features Oracle Database 10g: New Manageability Features Student Guide D17030GC10 Edition 1.0 September 2003 D38639 Author Lex de Haan Technical Contributors and Reviewers Jean-Francois Verrier Christine Jeal Martin

More information

Oracle Database 10g: PL/SQL Fundamentals

Oracle Database 10g: PL/SQL Fundamentals Oracle Database 10g: PL/SQL Fundamentals Volume 1 Student Guide D17112GC21 Edition 2.1 December 2006 D48243 Authors Tulika Srivastava Sunitha Patel Technical Contributors and Reviewers Chaitanya Koratamaddi

More information

Oracle Database 12c: Administration Workshop

Oracle Database 12c: Administration Workshop Oracle Database 12c: Administration Workshop Student Guide Volume I D78846GC10 Edition 1.0 July 2013 D82566 Authors Donna K. Keesling James L. Spiller Technical Contributors and Reviewers Darryl Balaski

More information

Oracle Forms Developer 10g: Move to the Web

Oracle Forms Developer 10g: Move to the Web Oracle Forms Developer 10g: Move to the Web Student Guide D17364GC10 Edition 1.0 December 2005 D22796 Author Pam Gamer Technical Contributors and Reviewers Charles Bryant Orlando Cordero Kathryn Cunningham

More information

MySQL Performance Tuning

MySQL Performance Tuning MySQL Performance Tuning Student Guide D61820GC30 Edition 3.0 January 2017 D89524 Learn more from Oracle University at education.oracle.com Authors Mark Lewin Jeremy Smyth Technical Contributors and Reviewers

More information

Oracle Adaptive Access Manager: Administration Student Guide

Oracle Adaptive Access Manager: Administration Student Guide Oracle Adaptive Access Manager: Administration Student Guide D70569GC10 Edition 1.0 October 2008 D56328 Authors Steve Friedberg Shankar Raman Technical Contributors and Reviewers Philip Garm Steve Jackle

More information

Oracle BI Publisher 10g R3: Fundamentals

Oracle BI Publisher 10g R3: Fundamentals Oracle BI Publisher 10g R3: Fundamentals Student Guide D53147GC10 Edition 1.0 February 2008 D54122 Authors Padmaja Mitravinda Brian Pottle Technical Contributors and Reviewers Leta Davis Tim Dexter Mike

More information

Oracle 10g: Java Programming

Oracle 10g: Java Programming Oracle 10g: Java Programming Volume 1 Student Guide D17249GC12 Edition 1.2 July 2005 D19367 Author Kate Heap Technical Contributors and Reviewers Ken Cooper Brian Fry Jeff Gallus Glenn Maslen Gayathri

More information

MySQL Cluster Student Guide

MySQL Cluster Student Guide MySQL Cluster Student Guide D62018GC11 Edition 1.1 November 2012 D79677 Technical Contributor and Reviewer Mat Keep Editors Aju Kumar Daniel Milne Graphic Designer Seema Bopaiah Publishers Sujatha Nagendra

More information

Oracle WebLogic Server 11g: Overview for WLS Administrators

Oracle WebLogic Server 11g: Overview for WLS Administrators Oracle WebLogic Server 11g: Overview for WLS Administrators Student Guide D60811GC10 Edition 1.0 July 2009 D61310 Authors Steve Friedberg T J Palazzolo Shankar Raman Technical Contributors and Reviewers

More information

Oracle GoldenGate 11g: Advanced Configuration for Oracle Student Guide

Oracle GoldenGate 11g: Advanced Configuration for Oracle Student Guide Oracle GoldenGate 11g: Advanced Configuration for Oracle Student Guide D76689GC10 Edition 1.0 March 2013 D81509 Author Elio Bonazzi Editors Smita Kommini Raj Kumar Richard Wallis Graphic Designer Rajiv

More information

Oracle BPM 10g R3 Programming 1 Essentials

Oracle BPM 10g R3 Programming 1 Essentials Oracle BPM 10g R3 Programming 1 Essentials Volume I Student Guide D55633GC10 Edition 1.0 March 2009 D58927 Authors Jill Moritz Kenny Somerville Technical Contributors and Reviewers Fernando Dobladez Carolina

More information

E Oracle 10g Java Bootcamp I v1

E Oracle 10g Java Bootcamp I v1 E Oracle 10g Java Bootcamp I v1 Student Guide Volume 1 D22059GC10 Edition 1.0 October 2005 D22281 Authors Jeff Gallus Glenn Stokol Editor Gayathri Rajagopal Technical Contributors and Reviewers Kenneth

More information

OracleAS 10g R3: Java Programming

OracleAS 10g R3: Java Programming OracleAS 10g R3: Java Programming Volume I Student Guide D18382GC20 Edition 2.0 April 2007 D50171 Authors Patrice Daux Kate Heap Technical Contributors and Reviewers Ken Cooper C Fuller Vasily Strelnikov

More information

Oracle BI Publisher 11g R1: Fundamentals

Oracle BI Publisher 11g R1: Fundamentals Oracle BI Publisher 11g R1: Fundamentals Volume I Student Guide D68420GC10 Edition 1.0 June 2011 D73304 Authors Lea Shaw Sindhu Rao Technical Contributors and Reviewers Timothy McGlue Nikos Psomas Pradeep

More information

Oracle Database 11g: RAC Administration

Oracle Database 11g: RAC Administration Oracle Database 11g: RAC Administration Student Guide D50311GC40 Edition 4.0 December 2012 D78200 Authors James Womack James Spiller Technical Contributors and Reviewers Christopher Andrews Christian Bauwens

More information

Oracle Content Server 11g: Administration

Oracle Content Server 11g: Administration Oracle Content Server 11g: Administration Volume I Student Guide D63093GC10 Edition 1.0 June 2011 D68962 Authors Saskia Nehls Marsha Hancock Deepa Pottangadi Technical Contributors and Reviewers Vijay

More information

Oracle Service Bus 10g R3: System Administration

Oracle Service Bus 10g R3: System Administration Oracle Service Bus 10g R3: System Administration Student Guide D56301GC11 Edition 1.1 November 2010 D69775 Authors Bill Bunch Bijoy Choudhury Swarnapriya Shridhar Technical Contributor and Reviewer Tom

More information

UNIX and Linux Essentials Student Guide

UNIX and Linux Essentials Student Guide UNIX and Linux Essentials Student Guide D76989GC10 Edition 1.0 June 2012 D77816 Authors Uma Sannasi Pardeep Sharma Technical Contributor and Reviewer Harald van Breederode Editors Anwesha Ray Raj Kumar

More information

Oracle GoldenGate 11g: Fundamentals for SQL Server Student Guide

Oracle GoldenGate 11g: Fundamentals for SQL Server Student Guide Oracle GoldenGate 11g: Fundamentals for SQL Server Student Guide D66523GC20 Edition 2.0 September 2012 D79012 Author Steve Friedberg Technical Contributors and Reviewers Mack Bell Chris Lawless Sue Jang

More information

Oracle Application Express: Administration Student Guide

Oracle Application Express: Administration Student Guide Oracle Application Express: Administration Student Guide D56361GC10 Edition 1.0 June 2011 D73408 Author Salome Clement Technical Contributors and Reviewers Veerabhadra Rao Putrevu Manish Pawar Chaitanya

More information

Oracle Application Testing Suite: Introduction Student Guide

Oracle Application Testing Suite: Introduction Student Guide Oracle Application Testing Suite: Introduction Student Guide D55447GC10 Edition 1.0 August 2008 D55981 Copyright 2008, Oracle. All rights reserved. Disclaimer This document contains proprietary information

More information

Oracle VM Administration: Oracle VM Server for x86 Student Guide

Oracle VM Administration: Oracle VM Server for x86 Student Guide Oracle VM Administration: Oracle VM Server for x86 Student Guide D74549GC10 Edition 1.0 April 2012 D76950 Author Michele Dady Editors Aju Kumar Anwesha Ray Graphic Designer Satish Bettegowda Publishers

More information

Oracle TimesTen 6.0: Core Concepts and Administration Volume I Student Guide

Oracle TimesTen 6.0: Core Concepts and Administration Volume I Student Guide Oracle TimesTen 6.0: Core Concepts and Administration Volume I Student Guide D21723GC10 Edition 1.0 February 2006 D44801 Author Danny Lau Technical Contributors and Reviewers Susan Cheung Joe Chung Phil

More information

Siebel 8.1.x Fundamentals Student Guide

Siebel 8.1.x Fundamentals Student Guide Siebel 8.1.x Fundamentals Student Guide D72466GC10 Edition 1.0 April 2011 Part Number - Applied Copyright 2011, Oracle and/or its affiliates. All rights reserved. Disclaimer This document contains proprietary

More information

Oracle VM Server for x86: Administration

Oracle VM Server for x86: Administration Oracle VM Server for x86: Administration Student Guide D85765GC10 Edition 1.0 August 2014 D87627 Author Michele Lemieux Dady Editors Daniel Milne Vijayalakshmi Narasimhan Graphic Designer Divya Thallap

More information

Oracle Database 11g: Use XML DB

Oracle Database 11g: Use XML DB Oracle Database 11g: Use XML DB Volume I Student Guide D52498GC10 Edition 1.0 July 2008 D55322 Authors Chaitanya Koratamaddi Salome Clement Technical Contributors and Reviewers Drew Adams Coby Adams Rohan

More information

Oracle Database 10g: PL/SQL Fundamentals

Oracle Database 10g: PL/SQL Fundamentals Oracle Database 10g: PL/SQL Fundamentals Volume I Student Guide D17112GC30 Edition 3.0 April 2009 D59413 Authors Salome Clement Sunitha Patel Tulika Srivastava Technical Contributors and Reviewers Brian

More information

Oracle Data Modeling and Relational Database Design Volume I Student Guide

Oracle Data Modeling and Relational Database Design Volume I Student Guide Oracle Data Modeling and Relational Database Design Volume I Student Guide D56497GC10 Edition 1.0 May 2010 D67007 Author Marcie Young Technical Contributors and Reviewer s Sue Harper Philip Stoyanov Nancy

More information

Oracle GoldenGate 11g Fundamentals for Oracle

Oracle GoldenGate 11g Fundamentals for Oracle Oracle GoldenGate 11g Fundamentals for Oracle Student Guide D66519GC10 Edition 1.0 February 2011 D72291 Disclaimer This document contains proprietary information and is protected by copyright and other

More information

Using Java - for PL/SQL and Database Developers Student Guide

Using Java - for PL/SQL and Database Developers Student Guide Using Java - for PL/SQL and Database Developers Student Guide D71990GC10 Edition 1.0 June 2011 D73403 Authors Priya Shridhar Prathima Trivedi Technical Contributors and Reviewers Andrew Rothstein Ashok

More information

Oracle WebLogic Server 12c: Administration I

Oracle WebLogic Server 12c: Administration I Oracle WebLogic Server 12c: Administration I Student Guide Volume 1 D80149GC10 Edition 1.0 July 2013 D82757 Authors Bill Bell Elio Bonazzi TJ Palazzolo Steve Friedberg Technical Contributors and Reviewers

More information

Oracle Data Integrator 11g: Advanced Integration and Development Student Guide

Oracle Data Integrator 11g: Advanced Integration and Development Student Guide Oracle Data Integrator 11g: Advanced Integration and Development Student Guide D78191GC10 Edition 1.0 Febraury 2013 D80589 Author Viktor Tchemodanov Technical Contributors and Reviewers Denis Gray Alex

More information

Oracle Database 11g: Administration Workshop I

Oracle Database 11g: Administration Workshop I Oracle Database 11g: Administration Workshop I Student Guide D50102GC11 Edition 1.1 October 2008 D56326 Authors Maria Billings Deirdre Matishak Jim Spiller Priya Vennapusa Technical Contributors and Reviewers

More information

Java Programming Language

Java Programming Language Java Programming Language Additional Material SL-275-SE6 Rev G D61750GC10 Edition 1.0 D62603 Copyright 2007, 2009, Oracle and/or its affiliates. All rights reserved. Disclaimer This document contains proprietary

More information

Oracle Database 10g: 2 Day DBA for Windows

Oracle Database 10g: 2 Day DBA for Windows Oracle Database 10g: 2 Day DBA for Windows Student Guide D18422GC10 Edition 1.0 May 2005 D41682 Author Donna K. Keesling Technical Contributors and Reviewers Lothar Auert Robert Bungenstock Jose Marco-Dominguez

More information

Oracle Database 12c: High Availability New Features

Oracle Database 12c: High Availability New Features Oracle Database 12c: High Availability New Features Student Guide D79794GC10 Edition 1.0 July 2013 D82517 Authors Peter Fusek Anupama Mandya Mark Fuller Jim Womack Technical Contributors and Reviewers

More information

Oracle Spatial 10g: Advanced

Oracle Spatial 10g: Advanced Oracle Spatial 10g: Advanced Volume I Student Guide D18959GC20 Edition 2.0 November 2005 D22663 Author Daniel Abugov Daniel Geringer Technical Contributors and Reviewers Thomas Hoogerwerf Christine Jeal

More information

Oracle Database 11g: SQL Tuning Workshop

Oracle Database 11g: SQL Tuning Workshop Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 11g: SQL Tuning Workshop Duration: 3 Days What you will learn This Oracle Database 11g: SQL Tuning Workshop Release

More information

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database SQL Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-051 Exam Title: Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-071 Exam Title: Oracle Database SQL Oracle and Structured

More information

Oracle9i Database: Advanced Instance Tuning

Oracle9i Database: Advanced Instance Tuning Oracle9i Database: Advanced Instance Tuning Student Guide D16442GC10 Edition 1.0 December 2002 D37574 Authors Lex de Haan Joel Goodman Technical Contributors and Reviewers Scott Gossett Christine Jeal

More information

Partitioning in Oracle Database 10g Release 2. An Oracle White Paper May 2005

Partitioning in Oracle Database 10g Release 2. An Oracle White Paper May 2005 Partitioning in Oracle Database 10g Release 2 An Oracle White Paper May 2005 Oracle Partitioning EXECUTIVE OVERVIEW Oracle Partitioning will enhance the manageability, performance, and availability of

More information

Oracle Database 11g for Experienced 9i Database Administrators

Oracle Database 11g for Experienced 9i Database Administrators Oracle Database 11g for Experienced 9i Database Administrators 5 days Oracle Database 11g for Experienced 9i Database Administrators Course Overview The course will give experienced Oracle 9i database

More information

Oracle 11g: XML Fundamentals

Oracle 11g: XML Fundamentals Oracle 11g: XML Fundamentals Student Guide D52500GC10 Edition 1.0 December 2007 D53762 Authors Chaitanya Koratamaddi Salome Clement Technical Contributors and Reviewers Bijoy Choudhury Isabelle Cornu Ken

More information

Oracle Database 12c: OCM Exam Preparation Workshop Ed 1

Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Duration: 5 Days What you will learn The Oracle Database 12c: OCM Exam Preparation

More information

Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1

Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Code: Lengt h: URL: D94327GC10 5 days View Online The Oracle Database 12c: OCM Exam Preparation Workshop is designed for those candidates

More information

Oracle Application Server 10g R3: Administration

Oracle Application Server 10g R3: Administration Oracle Application Server 10g R3: Administration Volume I Student Guide D44381GC10 Production 1.0 July 2006 D46707 Author Saurabh Banerjee Technical Contributors and Reviewers Celia Antonio Mary Bryksa

More information

OracleAS 10g R3: Build J2EE Applications II

OracleAS 10g R3: Build J2EE Applications II OracleAS 10g R3: Build J2EE Applications II Volume I Student Guide D18380GC10 Edition 1.0 April 2006 D45763 Authors David Loo Glenn Stokol Technical Contributors and Reviewers Michael Burke Dr. Ken Cooper

More information

Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1

Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 Duration 5 Days What you will learn Throughout the lessons of the Oracle Database 12c R2: New Features for Administrators Part 2 course

More information

Sun Virtualization: Solaris 10 Containers Administration

Sun Virtualization: Solaris 10 Containers Administration Sun Virtualization: Solaris 10 Containers Administration Student Guide SA-355-S10 Rev A.1 D61772GC11 Edition 1.1 D65087 Copyright 2009, 2010, Oracle and/or its affiliates. All rights reserved. Disclaimer

More information

Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 -

Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 - Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 - Duration: 5 Days What you will learn Throughout the lessons

More information

Oracle WebCenter Sites 11g for Developers

Oracle WebCenter Sites 11g for Developers Oracle WebCenter Sites 11g for Developers Student Guide D78300GC10 Edition 1.0 August 2012 D78723 Author Jenny Wongtangswad Technical Contributors and Reviewers Deirdre Duffy Heike Hundt Lee Klement Michael

More information

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda Agenda Oracle9i Warehouse Review Dulcian, Inc. Oracle9i Server OLAP Server Analytical SQL Mining ETL Infrastructure 9i Warehouse Builder Oracle 9i Server Overview E-Business Intelligence Platform 9i Server:

More information

Oracle Database 10g: New Features for Administrators

Oracle Database 10g: New Features for Administrators Oracle Database 10g: New Features for Administrators Volume II Student Guide D17079GC21 Edition 2.1 October 2005 D22244 Authors Christine Jeal Janet Stern Jean-Francois Verrier Technical Contributors and

More information

CHAPTER. Oracle Database 11g Architecture Options

CHAPTER. Oracle Database 11g Architecture Options CHAPTER 1 Oracle Database 11g Architecture Options 3 4 Part I: Critical Database Concepts Oracle Database 11g is a significant upgrade from prior releases of Oracle. New features give developers, database

More information

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE ORACLE 11gR2 DBA by Mr. Akal Singh ( Oracle Certified Master ) INTRODUCTION to ORACLE COURSE CONTENT Exploring the Oracle Database Architecture List the major architectural components of Oracle Database

More information

Sun Java System Application Server 8.1: Administration & Deployment

Sun Java System Application Server 8.1: Administration & Deployment Sun Java System Application Server 8.1: Administration & Deployment Student Guide - Volume I IAS-4444 Rev A D62040GC10 Edition 1.0 D63846 Copyright 2006, 2009, Oracle and/or its affiliates. All rights

More information

MySQL and PHP - Developing Dynamic Web Applications

MySQL and PHP - Developing Dynamic Web Applications MySQL and PHP - Developing Dynamic Web Applications Student Guide SQL-4405 Rev 2.0 D62048GC10 Edition 1.0 D63883 Copyright 2010, Oracle and/or its affiliates. All rights reserved. Disclaimer This document

More information

Oracle Spatial: Advanced Student Guide

Oracle Spatial: Advanced Student Guide Oracle Spatial: Advanced Student Guide D56784GC10 Edition 1.0 February 2009 D58425 Authors Daniel Geringer Puja Singh Technical Contributors and Reviewers Daniel Abugov Christian Bauwens William Beauregard

More information

Oracle Communication and Mobility Server: Introduction Student Guide

Oracle Communication and Mobility Server: Introduction Student Guide Oracle Communication and Mobility Server: Introduction Student Guide D52943GC10 Edition 1.0 January 2008 D54065 Author Viktor Tchemodanov Technical Contributors and Reviewers Christer Fahlgren Adam Odessky

More information

Oracle 1Z0-515 Exam Questions & Answers

Oracle 1Z0-515 Exam Questions & Answers Oracle 1Z0-515 Exam Questions & Answers Number: 1Z0-515 Passing Score: 800 Time Limit: 120 min File Version: 38.7 http://www.gratisexam.com/ Oracle 1Z0-515 Exam Questions & Answers Exam Name: Data Warehousing

More information

Oracle Database 10g: Data Guard Administration

Oracle Database 10g: Data Guard Administration Oracle Database 10g: Data Guard Administration Student Guide D17316GC11 Edition 1.1 January 2005 D40345 Authors Donna Keesling Ric Van Dyke Technical Contributors and Reviewers Christopher Andrews Larry

More information

Data Integration and ETL with Oracle Warehouse Builder

Data Integration and ETL with Oracle Warehouse Builder Oracle University Contact Us: 1.800.529.0165 Data Integration and ETL with Oracle Warehouse Builder Duration: 5 Days What you will learn Participants learn to load data by executing the mappings or the

More information

Oracle Database 10g: New Features for Administrators Release 2

Oracle Database 10g: New Features for Administrators Release 2 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 10g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course introduces students to the new features

More information

Oracle Exalogic Elastic Cloud 2.x: System Administration

Oracle Exalogic Elastic Cloud 2.x: System Administration Oracle Exalogic Elastic Cloud 2.x: System Administration Student Guide D77799GC20 Edition 2.0 April 2014 D85909 Author TJ Palazzolo Technical Contributors and Reviewers Jose Alvarez Diganta Choudhury Rick

More information

Oracle Database. VLDB and Partitioning Guide 11g Release 2 (11.2) E

Oracle Database. VLDB and Partitioning Guide 11g Release 2 (11.2) E Oracle Database VLDB and Partitioning Guide 11g Release 2 (11.2) E10837-05 March 2010 Oracle Database VLDB and Partitioning Guide, 11g Release 2 (11.2) E10837-05 Copyright 2008, 2010, Oracle and/or its

More information

Oracle Database 11g: Data Warehousing Fundamentals

Oracle Database 11g: Data Warehousing Fundamentals Oracle Database 11g: Data Warehousing Fundamentals Duration: 3 Days What you will learn This Oracle Database 11g: Data Warehousing Fundamentals training will teach you about the basic concepts of a data

More information

Oracle Database. VLDB and Partitioning Guide 11g Release 2 (11.2) E

Oracle Database. VLDB and Partitioning Guide 11g Release 2 (11.2) E Oracle Database VLDB and Partitioning Guide 11g Release 2 (11.2) E25523-01 September 2011 Oracle Database VLDB and Partitioning Guide, 11g Release 2 (11.2) E25523-01 Copyright 2008, 2011, Oracle and/or

More information

Fundamentals of the Java Programming Language

Fundamentals of the Java Programming Language Fundamentals of the Java Programming Language Student Guide SL-110 REV E D61798GC10 Edition 1.0 2009 D62399 Copyright 2006, 2009, Oracle and/or its affiliates. All rights reserved. Disclaimer This document

More information

E Oracle 10g Java Bootcamp II v1

E Oracle 10g Java Bootcamp II v1 E Oracle 10g Java Bootcamp II v1 Volume I Student Guide D22061GC10 Edition 1.0 October 2005 D22332 Author Lynn Munsinger Sunitha Patel Technical Contributors and Reviewers Anna Atkinson Scott Brewton Kenneth

More information

Oracle WebCenter Content 11g: Content Server Customization Student Guide - Volume I

Oracle WebCenter Content 11g: Content Server Customization Student Guide - Volume I Oracle WebCenter Content 11g: Content Server Customization Student Guide - Volume I D69235GC10 Edition 1.0 May 2012 D77125 Author Saskia Nehls Technical Contributors and Reviewers Marsha Hancock Kyle Hatlestad

More information

R12.x Oracle Order Management Fundamentals Student Guide

R12.x Oracle Order Management Fundamentals Student Guide R12.x Oracle Order Management Fundamentals Student Guide D60267GC10 Edition 1.0 May 2010 D66322 Copyright 2010, Oracle. All rights reserved. Disclaimer This document contains proprietary information and

More information