Oracle BPM 10g R3 Programming 1 Essentials

Size: px
Start display at page:

Download "Oracle BPM 10g R3 Programming 1 Essentials"

Transcription

1 Oracle BPM 10g R3 Programming 1 Essentials Volume I Student Guide D55633GC10 Edition 1.0 March 2009 D58927

2 Authors Jill Moritz Kenny Somerville Technical Contributors and Reviewers Fernando Dobladez Carolina Arce Terceros Graphic Designer Priya Saxena Editors Daniel Milne Vijayalakshmi Narasimhan Publishers Jobi Varghese Nita Brozowski Copyright 2009, 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 is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

3 Contents 1 Overview Course Objectives 1-2 Audience 1-3 Course Prerequisites 1-4 Course Format 1-5 Course Agenda: Day Course Agenda: Day Course Agenda: Day Architectural Overview Lesson Objectives 2-2 Lesson Roadmap 2-3 What Is Business Process Management? 2-4 Oracle BPM Suite Solution Life Cycle 2-7 Process Development Life Cycle 2-13 Lesson Roadmap 2-14 OBPM Suite 2-15 Studio Components 2-16 Quiz 2-17 OBPM Studio Features 2-18 Process Modeling 2-19 Project Organizational Structure 2-20 Process Simulation 2-21 Process Integration with External Systems 2-22 Quiz 2-23 Process HTML Forms Editor 2-24 Process Debugging 2-25 WorkSpace Features 2-26 Studio and WorkSpace 2-28 OBPM Components: Enterprise 2-29 Quiz 2-30 Production WorkSpace 2-31 OBPM Enterprise Data Tier 2-32 OBPM Communication Protocols 2-33 Quiz 2-35 iii

4 Lesson Roadmap 2-36 Studio: Eclipse-Based IDE 2-37 What Can I Do with Studio? 2-38 Programming Language Support 2-40 Running a Process 2-41 Important Studio Directories 2-42 Summary Building the Basic Process Lesson Objectives 3-2 Lesson Roadmap 3-3 Process Example: An Expense Approval Process Without Expense Limits 3-4 Process Example: An Expense Approval Process with Expense Limits 3-7 A Basic Process 3-9 Quiz 3-10 Process Instance 3-11 Lesson Roadmap 3-12 Launching OBPM Studio 3-13 Studio Layout 3-14 OBPM Projects 3-16 Creating a New Project 3-17 Project Navigator 3-18 Creating a New Process 3-19 New Process in Design Editor 3-20 Horizontal Lanes 3-21 Vertical Lanes 3-22 Projects and Processes 3-23 Quiz 3-24 Lesson Roadmap 3-25 Roles 3-26 Automatic Handler Role 3-27 Abstract Role 3-28 Flow Objects 3-29 Interactive Activity 3-30 Process Trigger 3-31 Transitions 3-32 Transition Types 3-33 Conditional and Unconditional Transitions 3-35 Activity Documentation 3-36 Saving the Project 3-37 Checking the Process Design 3-38 iv

5 Quiz 3-39 Lesson Roadmap 3-40 Case Study 3-41 Marine Supply s Process Goals 3-43 Marine Supply s OBPM Processes 3-44 Practice 3: Overview 3-45 Summary OBPM Flow Elements Lesson Objectives 4-2 Lesson Roadmap 4-3 Modeling Elements 4-4 Activities 4-6 Gateways 4-7 Events 4-8 Global Activities 4-9 Artifacts 4-10 Quiz 4-11 Lesson Roadmap 4-12 Begin 4-13 End 4-14 Interactive 4-15 Automatic 4-16 Grab 4-17 Subflow 4-18 Process Creation 4-19 Termination Wait 4-20 Decision 4-21 Quiz 4-22 Lesson Roadmap 4-23 Split 4-24 Multiple 4-25 OR Split 4-26 Join 4-27 Conditional 4-28 Quiz 4-29 Lesson Roadmap 4-30 Message Wait 4-31 Send Message 4-32 Timer 4-33 Compensate 4-34 v

6 Quiz 4-35 Lesson Topics 4-36 Global Creation 4-37 Global Automatic 4-38 Global Interactive 4-39 Quiz 4-40 Lesson Roadmap 4-41 Measurement Mark 4-42 Summary Using Variables Lesson Objectives 5-2 Lesson Roadmap 5-3 Overview of Variables 5-4 How Variables Are Used 5-5 Lesson Roadmap 5-6 Scope of Variables 5-7 Predefined Variables 5-9 Local Variables 5-10 Instance Variables 5-11 Quiz 5-12 Creating Variables 5-13 Variable Naming 5-14 Types of Variables 5-15 Object Variables 5-16 Quiz 5-17 Categories of Instance Variables 5-18 Instance Variables: Normal 5-19 Instance Variables: Separated 5-20 Project Variables 5-21 Project Variables and the WorkSpace 5-22 Project Variables: Business Indicator 5-23 Quiz 5-24 Business Parameters 5-25 Lesson Roadmap 5-26 Mapping of Variables 5-27 Passing Values 5-28 Argument Variables 5-29 Mapping Values into a Process 5-30 How to Map Values into a Process 5-31 Create the Argument Variables 5-32 vi

7 Create the Instance Variables 5-33 Define the Mappings 5-34 Quiz 5-35 Summary 5-36 Practice 5: Overview Process Business Language (PBL) Basics Lesson Objectives 6-2 Lesson Roadmap 6-3 Purpose of Coded Logic in a Business Process 6-4 Process Business Language (PBL) 6-5 Method Editor 6-6 Assigning a Method Implementation to the Main Task of an Activity 6-7 Methods on the Process Instance 6-8 PBL Basics 6-9 Arithmetic Operators 6-10 Arithmetic Operators for Time 6-11 String Concatenation 6-12 Comparison Operators 6-13 Use of Comparison Operators 6-14 Boolean Variable 6-15 Testing for Null 6-16 Declaring and Initializing Arrays 6-17 Working with Arrays 6-18 Quiz 6-19 in Operator 6-20 Logical Operators 6-21 Conversion 6-22 Built-In Functions 6-23 String Built-in Functions 6-24 Math Built-in Functions 6-25 Lesson Roadmap 6-26 display Statement 6-27 input Statement 6-28 input Statement Example 6-29 Quiz 6-30 Lesson Roadmap 6-31 Displaying Time 6-32 Time/String Conversion 6-33 Time Intervals 6-34 vii

8 Lesson Roadmap 6-35 if / elseif / else Statement 6-36 case Statement 6-37 Ternary Operator 6-38 while Loop Statement 6-39 Basic for Loop 6-40 for and for each Loops 6-41 Quiz 6-42 Using Iterators in a for each Loop 6-43 Templates 6-44 Lesson Roadmap 6-45 Conditional Transitions 6-46 Setting the Result Variable 6-47 Custom Transition Logic 6-48 Lesson Roadmap 6-49 Process Debugger 6-50 Creating a Launch Configuration 6-51 Defining Breakpoints 6-53 Demo: A Simple Process Debug Session 6-54 Practice 6: Overview 6-55 Summary Roles and Participants Lesson Objectives 7-2 Lesson Roadmap 7-3 Organization Basics 7-4 Organization Categories 7-5 Relationships 7-6 Organizational Units, Roles, Groups, and Participants 7-7 Quiz 7-8 Organization Units Example: Marine Supply 7-9 Process Deployed to No Specific Organization Unit 7-10 Process Deployed to Sales Organization Unit 7-11 Relationship of Studio Roles to Enterprise Roles 7-12 Quiz 7-13 Lesson Roadmap 7-14 Organization Node in the Project Navigator 7-15 Organization Features 7-16 Organizational Units 7-17 Roles 7-19 viii

9 Groups 7-21 Participants 7-23 Holiday Rules 7-25 Calendars 7-27 Business Parameters 7-29 Practice 7: Overview 7-30 Practice 7: What You Will Do 7-31 Summary Using the WorkSpace to Test a Process Objectives 8-2 Lesson Roadmap 8-3 WorkSpace Engine 8-4 What Is the WorkSpace? 8-5 Publishing and Deploying a Process 8-6 Preparing the Studio WorkSpace 8-7 Publishing and Deploying to the Process Engine (Production) 8-8 What Do Participants Do? 8-9 WorkSpace: User Interaction 8-10 Process Workflow in WorkSpace 8-12 Lesson Roadmap 8-13 Engine Preferences 8-14 Some Commonly Set Preferences 8-15 Starting the Engine 8-16 Quiz 8-17 Lesson Roadmap 8-18 Applications Panel 8-19 View Drop-Down List 8-20 Work Items (Instances) 8-21 Work Items Panel 8-22 Interactive Screens: Presentations 8-23 Participants in the Process 8-24 Work Items Panel Actions 8-25 Work Items Toolbar 8-26 Quiz 8-27 Chart Option 8-28 WorkSpace Settings 8-29 Work Item Detail Panel 8-30 Work Item Detail Tabs 8-31 Work Item Detail: Notes 8-33 Work Item Detail: Consultations 8-34 ix

10 Work Item Detail: Audit Trail 8-35 History Views 8-36 Quiz 8-37 Edit Mode 8-38 Edit Mode for Individual Panel 8-39 Optional Panels 8-40 Chart Panel 8-41 Task Panel 8-42 Option: Show Workload 8-43 Process Map 8-44 Quiz 8-45 Lesson Roadmap 8-46 More on the Process Debugger 8-47 Running the Launch Configuration 8-48 Walking Through the Code 8-49 Summary 8-50 Practice 8: Overview Building Screenflows Lesson Objectives 9-2 What Is a Screenflow? 9-3 Screenflows 9-4 Screenflow Called by a Process 9-5 Quiz 9-6 Screenflow Activities 9-7 Process Activities Versus Screenflow Activities 9-8 Screenflows Instead of Inputs 9-9 More on Screenflows 9-10 Customizing Screenflows with CSS 9-11 Quiz 9-12 Creating a Screenflow 9-13 Setting the Main Task and Creating the Screenflow 9-14 Setting the Screenflow Name and Mapping 9-15 More on Mapping 9-16 Adding Activities to the Screenflow 9-18 Setting the Main Task for Interactive Component Call 9-19 Quiz 9-20 Debugging Screenflows 9-21 Summary 9-22 Practice 9: Overview 9-23 x

11 10 Using BPM Objects Lesson Objectives 10-2 Lesson Roadmap 10-3 What Is a BPM Object? 10-4 Benefits of a BPM Object 10-5 Lesson Roadmap 10-6 Makeup of a BPM Object 10-7 BPM Object Compared to a Java Class 10-9 BPM Object Additional Features Creating a BPM Object Quiz Lesson Roadmap Attributes Adding Attributes Attributes Settings Attribute Settings Defining Static Valid Values Defining Dynamic Valid Values Creating a Virtual Attribute Quiz Lesson Roadmap Methods Standard Methods Lesson Roadmap Presentations Creating a Presentation Presentation Structure Formatting Components by Using Format Pop-Ups Formatting Components by Using the Properties Panel Replacing a Component with a Different Type Adding a New Component Previewing the Presentation from the Form Editor Testing the BPM Object Presentation with Functionality Lesson Roadmap Practice 10-1 Overview: Create a Basic BPM Object Practice 10-2 Overview: Create a Presentation with Constraints Lesson Roadmap Overview of Groups A Groups Scenario Creating a Group Adding a BPM Object to a Group xi

12 Populating a Group in a BPM Object Quiz Presentations and Groups Example: Using Presentations with Groups Example: Presentations Defined for the Job Object Creating a Presentation for a BPM Object with a Group Lesson Roadmap Displaying a BPM Object Presentation Testing a BPM Object Presentation with the Method Debugger Testing a BPM Object Presentation from a Process Lesson Roadmap Submit and Cancel Buttons Working with Submit and Cancel Submit Action: Example A Good Use for BPM Objects Quiz Summary Remaining Practices for Lesson 10 Overview: Working with Grouped BPM Objects Using Split and Multiple Gateways Lesson Objectives 11-2 Lesson Roadmap 11-3 Sequential Process Flow 11-4 Parallel Process Flow 11-5 Split/Join Overview 11-6 Split/Join Anatomy 11-7 When to Use Split/Join 11-8 Under the Covers of a Split/Join 11-9 Quiz Lesson Roadmap Creating a Split/Join Circuit More on the Split Gateway Split/Join Conditional Transitions Some Best Practices Join Activity Join Logic Join Activity: Example Activity Id Versus Name Quiz Lesson Roadmap xii

13 Early Release from the Join RELEASE: Example Lesson Roadmap Practice 11-1 Through 11-3 Overview: Creating a Split/Join Circuit Lesson Roadmap Comparing Split and Multiple/Join Circuits What Is a Multiple/Join Circuit? Multiple Gateway: Request for Quote Multiple Gateway: Processing a Batch of Claims Multiple Gateway: Voting Lesson Roadmap Multiple/Join Circuit Overview Multiple Gateway Characteristics Original Instance Routing Quiz Creating a Multiple/Join Circuit Creating Copies Join Logic Lesson Roadmap Using RELEASE Performance Issues Multiple Upper Bound Aborted Copies More Performance Issues Maximum Number of Simultaneous Copies Memory Use Split and Multiple Join Circuits: Summary Practices 11-4 Through 11-6 Overview: Creating Multiple/Join Circuits Using Subprocesses Lesson Objectives 12-2 Lesson Roadmap 12-3 What Is a Subprocess? 12-4 Why Use a Subprocess? 12-5 When to Use a Subprocess 12-6 Lesson Roadmap 12-7 Calling a Subprocess 12-8 Synchronous Processing 12-9 Asynchronous Processing Process Creation and Termination Wait Send Message and Message Wait xiii

14 Asynchronous Processing Quiz Lesson Roadmap Deciding to Use a Subprocess Creating a Subprocess Creating a Subflow Activity Creating a Subprocess Mapping to or from a Subprocess: Example Quiz Lesson Roadmap Practices 12-1 Through 12-4 Overview: Creating a Subprocess Lesson Roadmap What Is a Dynamic Subprocess? Diagram of a Dynamic Subprocess Advantages of Dynamic Subprocesses How Dynamic Subprocesses Work Quiz Lesson Roadmap Creating a Dynamic Subprocess What Happens at Run Time Summary Practice 12-5 Through 12-6 Overview: Using a Dynamic Subprocess Handling Exceptions: The Basics Objectives 13-2 Lesson Roadmap 13-3 What Is an OBPM Exception? 13-4 Transactional Nature of Exceptions 13-5 Types of Exceptions 13-7 Quiz 13-8 Lesson Roadmap 13-9 Throwing and Catching Exceptions Are Caught by a Specific Exception Handler Exception Handlers Are Hierarchical Catching Exceptions: The Takeaway Lesson Roadmap Handling Exceptions Within a Process Sequence of Processing in an Exception Flow Activity Exception Flow Quiz What Is a Group? xiv

15 Group Exception Flow Process Exception Flow Creating a Process Exception Flow Creating an Activity or Group Exception Flow Coding an Exception Handler Result of Action Settings Coding an Exception Handler Quiz Default Exception Handler Default Exception Handling Policy for a Project Handle Exceptions Option Putting It All Together: Review Examples Some Miscellaneous Points Quiz Some Miscellaneous Points Summary Practice 13: Overview Integrating Database Components Lesson Objectives 14-2 Lesson Roadmap 14-3 Integrating the Process with a Database 14-4 Target Databases 14-5 Integrating with a Database: Overview 14-6 Database Components 14-7 External Resources 14-8 SQL Database External Resource 14-9 Creating a SQL Database External Resource Quiz Exposing a Single Database Table Creating a SQL Database Component Exposing a SQL Result Set from a Query Creating a SQL Query Database Component: Self-Contained Creating a SQL Query Database Component: Parametric Quiz More on the Database Component Lesson Roadmap Working with Database Components Using Embedded SQL with Database Components Example: SELECT Using Database Component xv

16 Example: Returning a Single Row by Using the Load Method Example: Process a Result Set with a For-Each Loop Quiz Lesson Roadmap Displaying the Data: Some Options Using the display Statement with the SQL Query Database Components Block Components Using Fuego Block Components in Your Code: Three Styles Using the Table Component to Display Data Summary Practice 14: Overview Using Dashboards Lesson Objectives 15-2 Lesson Roadmap 15-3 Dashboards Can Answer Questions 15-4 Overview of the BAM Database 15-5 Dashboard: Example 15-6 How to Create Dashboards 15-7 Lesson Roadmap 15-8 Why Coded Dashboards? 15-9 Working with Dashboards: Overview Creating a Dashboard: Overview Create a Dashboard Add a Chart How Charts Are Populated About the Fuego.Chart Component Example: Two-Dimensional Chart Example: Three-Dimensional Chart Using the addvalue() Method Quiz Using the addvalue() Method Form Editor: Add a Chart Getting Data into the XYDataSourceImpl Component Using Embedded SQL: Things to Know SQL Example SQL Example Using the Method Invoked Property Quiz Other Important Chart Properties xvi

17 Lesson Roadmap Working with Drill-Down Dashboards About Drill-Down Charts Creating a Drill-Down Chart: High-Level Steps Quiz Create a Drill-Down Presentation Add Row and Column Attributes to the Dashboard Object Create a Method to Display the Drill-Down Presentable Class Set the OnClick Property of the Main Chart Create a Method Invoked Method for the Drill-Down Chart Lesson Roadmap Server-Side/Client-Side Issues Example: Main Chart Example Drill-Down Chart Summary Practice 15: Overview Appendix A: Practices and Solutions xvii

18

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

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 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 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 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 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 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 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 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 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

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 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 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

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 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

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 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

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 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 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

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 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 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 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 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

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: 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: 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

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

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

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

Oracle Identity Manager 11g: Essentials

Oracle Identity Manager 11g: Essentials Oracle Identity Manager 11g: Essentials Volume I Student Guide D65160GC10 Edition 1.0 November 2010 D69802 Disclaimer This document contains proprietary information and is protected by copyright and other

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

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 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

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 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 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 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

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 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

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

Business Component Development with EJB Technology, Java EE 5

Business Component Development with EJB Technology, Java EE 5 Business Component Development with EJB Technology, Java EE 5 Student Guide SL-351-EE5 REV D.2 D61838GC10 Edition 1.0 D62447 Copyright 2008, 2009, Oracle and/or its affiliates. All rights reserved. Disclaimer

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 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 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 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

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 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

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: Implement and Administer a Data Warehouse

Oracle Database 10g: Implement and Administer a Data Warehouse Oracle Database 10g: Implement and Administer a Data Warehouse Student Guide Volume 1 D18957GC10 Edition 1.0 November 2005 D22685 Authors Donna Keesling Jean Francois Verrier Jim Womack Technical Contributors

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

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

Java EE Patterns. Student Guide - Volume 1. SL-500 Rev C.0.1. D61856GC10 Edition 1.0 D62465

Java EE Patterns. Student Guide - Volume 1. SL-500 Rev C.0.1. D61856GC10 Edition 1.0 D62465 Java EE Patterns Student Guide - Volume 1 SL-500 Rev C.0.1 D61856GC10 Edition 1.0 D62465 Copyright 2005, 2009, Oracle and/or its affiliates. All rights reserved. Disclaimer This document contains proprietary

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 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 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 Customer Care. Implementation Guide. Release 11i. August, 2000 Part No. A

Oracle Customer Care. Implementation Guide. Release 11i. August, 2000 Part No. A Oracle Customer Care Implementation Guide Release 11i August, 2000 Part No. A86218-01 Oracle Customer Care Implementation Guide, Release 11i Part No. A86218-01 Copyright 1996, 2000, Oracle Corporation.

More information

E R12/5.6.3 Oracle XML Publisher Fundamentals Volume I - Student Guide

E R12/5.6.3 Oracle XML Publisher Fundamentals Volume I - Student Guide E R12/5.6.3 Oracle XML Publisher Fundamentals Volume I - Student Guide D59123GC10 Edition 1.0 April 2009 D59936 Copyright 2009, Oracle. All rights reserved. Disclaimer This document contains proprietary

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

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 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 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 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

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 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

Object-Oriented Analysis and Design Using UML

Object-Oriented Analysis and Design Using UML Object-Oriented Analysis and Design Using UML Student Guide - Volume 1 OO-226 Rev C D61808GC10 Edition 1.0 D62408 Copyright 2003, 2009, Oracle and/or its affiliates. All rights reserved. Disclaimer This

More information

Oracle CRM Foundation

Oracle CRM Foundation Oracle CRM Foundation Concepts and Procedures Release 11i August 2000 Part No. A86099-01 Oracle CRM Foundation Concepts and Procedures, Release 11i Part No. A86099-01 Copyright 1996, 2000, Oracle Corporation.

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 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 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 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 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

Shell Programming for System Administrators Student Guide

Shell Programming for System Administrators Student Guide Shell Programming for System Administrators Student Guide D61776GC21 Edition 2.1 April 2010 D66885 Copyright 2010, Oracle and/or its affiliates. All rights reserved. Disclaimer This document contains proprietary

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 Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware User's Guide for Oracle Business Process Management 11g Release 1 (11.1.1.4.0) E15175-03 January 2011 Oracle Fusion Middleware User's Guide for Oracle Business Process Management

More information

Oracle WebCenter Content

Oracle WebCenter Content Oracle WebCenter Content User's Guide for Site Studio Designer 11g Release 1 (11.1.1) E10613-02 November 2011 Oracle WebCenter Content User's Guide for Site Studio Designer, 11g Release 1 (11.1.1) E10613-02

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

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

JD Edwards EnterpriseOne Tools

JD Edwards EnterpriseOne Tools JD Edwards EnterpriseOne Tools Development Tools: Report Design Aid Guide Release 8.98 Update 4 E14708-02 March 2011 JD Edwards EnterpriseOne Tools Development Tools: Report Design Aid Guide, Release 8.98

More information

Interstage Business Process Manager Analytics V12.1 Studio Guide

Interstage Business Process Manager Analytics V12.1 Studio Guide Interstage Business Process Manager Analytics V12.1 Studio Guide Solaris April 2013 Studio Guide Trademarks Trademarks of other companies are used in this documentation only to identify particular products

More information

Oracle SOA Suite 10g R3: Administration. Student Guide

Oracle SOA Suite 10g R3: Administration. Student Guide Oracle SOA Suite 10g R3: Administration Student Guide D53181GC10 Edition 1.0 January 2009 Authors Ramaa Mani Saurabh Banerjee Technical Contributors and Reviewers Todd Bao David Berry Steve Button Bijoy

More information

Oracle WebLogic Server 11g: Diagnostics and Troubleshooting

Oracle WebLogic Server 11g: Diagnostics and Troubleshooting Oracle WebLogic Server 11g: Diagnostics and Troubleshooting Volume II Student Guide D61523GC20 Edition 2.0 March 2011 D72554 Author Bill Bell Technical Contributors and Reviewers Will Lyons TJ Palazzolo

More information

This course is designed for web developers that want to learn HTML5, CSS3, JavaScript and jquery.

This course is designed for web developers that want to learn HTML5, CSS3, JavaScript and jquery. HTML5/CSS3/JavaScript Programming Course Summary Description This class is designed for students that have experience with basic HTML concepts that wish to learn about HTML Version 5, Cascading Style Sheets

More information

Oracle Fusion Middleware User s Guide for Oracle Internal Service Request Process Accelerator 11gRelease 1 ( )

Oracle Fusion Middleware User s Guide for Oracle Internal Service Request Process Accelerator 11gRelease 1 ( ) Oracle Fusion Middleware User s Guide for Oracle Internal Service Request Process Accelerator 11gRelease 1 (11.1.1.7.2) June 2014 Copyright 2012, 2014, Oracle and/or its affiliates. All rights reserved.

More information

Oracle BPM 11g: Implement the Process Model

Oracle BPM 11g: Implement the Process Model Oracle BPM 11g: Implement the Process Model Duration: 5 Days What you will learn This Oracle BPM 11g: Implement the Process Model training is ideal for process developers who want to learn how to implement

More information

Introduction to PTC Windchill PDMLink 11.0 for the Implementation Team

Introduction to PTC Windchill PDMLink 11.0 for the Implementation Team Introduction to PTC Windchill PDMLink 11.0 for the Implementation Team Overview Course Code Course Length TRN-4752-T 16 Hours In this course, you will learn how to complete basic Windchill PDMLink functions.

More information

Installing and Administering a Satellite Environment

Installing and Administering a Satellite Environment IBM DB2 Universal Database Installing and Administering a Satellite Environment Version 8 GC09-4823-00 IBM DB2 Universal Database Installing and Administering a Satellite Environment Version 8 GC09-4823-00

More information

Contents I Introduction 1 Introduction to PL/SQL iii

Contents I Introduction 1 Introduction to PL/SQL iii Contents I Introduction Lesson Objectives I-2 Course Objectives I-3 Human Resources (HR) Schema for This Course I-4 Course Agenda I-5 Class Account Information I-6 Appendixes Used in This Course I-7 PL/SQL

More information

1Z0-560 Oracle Unified Business Process Management Suite 11g Essentials

1Z0-560 Oracle Unified Business Process Management Suite 11g Essentials 1Z0-560 Oracle Unified Business Process Management Suite 11g Essentials Number: 1Z0-560 Passing Score: 650 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ 1Z0-560: Oracle Unified Business

More information

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Primavera Portfolio Management 9.0 What s New Copyright 1999-2011, Oracle and/or its affiliates. The Programs (which include both the software and documentation) contain proprietary information; they are

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Platform Developer's Guide for Oracle Real-Time Decisions 11g Release 1 (11.1.1) E16630-05 April 2012 Explains how to develop adaptive solutions with Oracle Real-Time Decisions

More information

"Charting the Course... SharePoint 2007 Hands-On Labs Course Summary

Charting the Course... SharePoint 2007 Hands-On Labs Course Summary Course Summary Description This series of 33 hands-on labs allows students to explore the new features of Microsoft SharePoint Server, Microsoft Windows, Microsoft Office, including Microsoft Office Groove,

More information

Oracle Fusion Middleware Migrating Oracle Business Process Management Projects. 12c ( )

Oracle Fusion Middleware Migrating Oracle Business Process Management Projects. 12c ( ) Oracle Fusion Middleware Migrating Oracle Business Process Management Projects 12c (12.2.1.3.0) E67167-01 August 2017 Oracle Fusion Middleware Migrating Oracle Business Process Management Projects, 12c

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

Introduction to Windchill PDMLink 10.2 for the Implementation Team

Introduction to Windchill PDMLink 10.2 for the Implementation Team Introduction to Windchill PDMLink 10.2 for the Implementation Team Overview Course Code Course Length TRN-4262-T 2 Days In this course, you will learn how to complete basic Windchill PDMLink functions.

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

PeopleSoft Applications Portal 9.1 PeopleBook: Portal and Site Administration

PeopleSoft Applications Portal 9.1 PeopleBook: Portal and Site Administration PeopleSoft Applications Portal 9.1 PeopleBook: Portal and Site Administration January 2012 PeopleSoft Applications Portal 9.1 PeopleBook: Portal and Site Administration SKU ps91psad-b0112 Copyright 2000,

More information