Oracle Database Lite 10gR2 Technical White Paper. An Oracle White Paper June 2006

Size: px
Start display at page:

Download "Oracle Database Lite 10gR2 Technical White Paper. An Oracle White Paper June 2006"

Transcription

1 Oracle Database Lite 10gR2 Technical White Paper An Oracle White Paper June 2006

2 Oracle Database Lite 10gR2 Technical White Paper ORACLE DATABASE LITE 10G OVERVIEW... 3 Introduction... 3 DATABASE LITE COMPONENTS... 3 Prerequisite Software for Lite... 4 Middle-Tier Option for Mobile Server... 4 Oracle Lite Database... 5 Data Synchronization... 5 Synchronization Process... 6 MyCompose API... 7 Queue Based Synchronization API... 7 Life Cycle Management... 7 Application Management... 8 Device Management Rapid Application Development Development Tools Supported Native Development Model Web Development Model Web Development Model Java Development Model Packaging Wizard Mobile Database Workbench (MDW) Branch Office Figure 5. Oracle Lite Branch Office Model Middle-Tier Option for Mobile Server Components Distributed on the CD Oracle is Your Partner of Choice Summary Oracle Database Lite 10gR2 Technical White Paper Page 2

3 Oracle Database Lite 10gR2 Technical White Paper ORACLE DATABASE LITE 10G OVERVIEW INTRODUCTION Employees are working away from their desks and require access to corporate data normally found only on desktop devices connected to enterprise networks. Wireless connections for mobile users offer the promise of remote access of enterprise data but persistent wireless connections are not always possible, practical or desirable. Wireless connections are not always possible because mobile workers may be in an environment that does not have wireless coverage. Often it is not practical to use a persistent wireless connection because applications do not have a real time data access requirement to justify the costs of communications. There are situations where a wireless connection is not desirable because the very presence of a wireless connection could compromise an application or a user s security. Developers require an infrastructure with application services that enable the development, delivery and operation of secure, personalized applications to mobile or embedded devices. DATABASE LITE COMPONENTS Oracle Database Lite 10g is a part of Oracle s Database that extends the grid environment and it makes your applications mobile. Oracle Database Lite describes a group of components that includes the Lite Database, the Mobile Server for Data Synchronization, Life Cycle Management and a Rapid Application Development environment. Oracle Database Lite is a complete solution and includes more than a small database. The Oracle Lite database included in this solution is not an abbreviated version of the Oracle database but was designed from the ground up to be used with mobile applications in small and embedded devices. Oracle Database Lite 10gR2 Technical White Paper Page 3

4 Mobile Client Mobile Servers Mobile Server Repository Sync Layer Oracle Lite Data and Applications Hardware Load Balancer Application Provisioning Data Synchronization Device Management Life Cycle Management Security Figure 1. Oracle Database Lite Component Overview Prerequisite Software for Lite Since Oracle Database Lite stores and retrieves your information from an Oracle database, you must have a back-end Oracle database to run Lite. The Oracle database can be either Standard or Enterprise Edition, running a minimum version of or higher. Middle-Tier Option for Mobile Server Oracle Database Lite uses a middle-tier to communicate between the clients and the back-end database. You must use one of the following as the middle-tier: Stand alone OC4J for development environments Oracle Application Server for production environments Stand Alone OC4J Stand Alone OC4J is automatically installed with Oracle Database Lite and this provides a standalone Mode for development environments. Mobile Server in standalone mode uses the standalone version of Oracle Containers for J2EE (OC4J). This is the preferred configuration for development and testing but it will support only a limited number of concurrent users. Oracle Application Server Production environments require either Oracle Application Server 10g. The application server is not installed with Oracle Database Lite and must be installed before installing Oracle Database Lite Mobile Server. Oracle Database Lite 10gR2 Technical White Paper Page 4

5 The Oracle Application Server production environment will support large numbers of users, provides caching, load balancing, centralized management, security, and Single Sign On support. Oracle Lite Database The Oracle Lite Database is a small footprint, Java enabled, secure, relational database management system created specifically for laptop computers, handheld computers, PDAs, and information appliances. Oracle Lite Database runs on Windows 2000/XP, Windows CE/Pocket PC, Symbian OS, and Embedded Linux. Oracle Lite Database provides JDBC, ODBC, ADO.NET and Simple Object Data Access (SODA) APIs, for an easy-to-use C++ interface that is optimized for the object-oriented and SQL functionality of Oracle Database Lite. Installation of the Mobile Development Kit (MDK) installs the Oracle Lite Database and all its utilities on your development machine. The Oracle Lite Database features: Small Flexible object kernel SQL 92 and ACID Compliant Java Stored Procedures and Triggers Built-in change capture Zero Administration Databases size: 4 GB Multi user version supports up to 32 simultaneous connections Compatible with Oracle Database 10g Fast Native JDBC interface (Type-4) ODBC available on all platforms - V for Windows Strong encryption using AES Data Synchronization A user s data is synchronized between Oracle Lite Database and an Oracle database server. Synchronization is accomplished by invoking the Mobile sync client, msync, which interacts with the Mobile Server. The Mobile Server uses synchronization objects such as users, publications, publication items, and subscriptions to process client and server data changes. This technique is referred to as a publish/subscribe model. Oracle Database Lite 10gR2 Technical White Paper Page 5

6 Synchronization Process Oracle Database Lite contains a subset of data stored in the Oracle database. This subset is stored in snapshots in the Oracle Lite database. Unlike a base table, a snapshot keeps track of changes made to it in a change log. Users can make changes in the Oracle Lite database while the device is disconnected, and can synchronize with the Oracle database server. There are basically three types of publication items that can be used to define synchronization; fast refresh, complete refresh, and queue based. The most common method of synchronization is a fast refresh publication item where changes are uploaded by the client, and changes for the client are downloaded. Meanwhile, a background process called the Message Generator and Processor (MGP) periodically collects the changes uploaded by all clients and applies them to database tables. It then composes new data, ready to be downloaded to each client during the next synchronization, based on predefined subscriptions. Oracle Lite Sync is a two step asynchronous process: Client (Device) Mobile Server Base Tables Native App Olite Sync DB Client Upload Download IN Queue OUT Queue Apply Compose Figure 2. Oracle Database Lite Synchronization Process 1. Sync moves updated rows from the client database to the In Queue and from the Out Queue to the client database MGP (Message Generator Processor) applies In Queue changes to base tables and Composes the changes to the base tables to client Out Queues. Oracle Lite s asynchronous synchronization architecture emphasizes: Performance Data compression Scalability (supports thousands of users) Transport independence (wired, wireless, or reliable transport) Conflict detection and customizable resolution Complete synchronizes (all database objects) Checkpointing allows sync to resume where it left off Oracle Database Lite 10gR2 Technical White Paper Page 6

7 Non-blocking synchronization (No user is blocked by another user) Multi-threaded architecture Custom synchronization invocation Multiple synchronization and network protocols: - TCP/IP, HTTP, b/g, PPP12, GPRS, ActiveSync Open Transport APIs to support any wireless network MyCompose API The MyCompose class allows a developer to programmatically customize the compose phase of synchronization. MyCompose is a programming interface option available to developers to control MGP s DML operations. This is especially useful if a DML operation is very complex. Compose may be applied to specific clients using programming selection techniques or to prioritize client compose. Queue Based Synchronization API Optionally, application developers may manage the Synchronization process programmatically by using the Queue Based publication item API. This can be considered the most basic form of publication item, for the simple reason that there is no synchronization logic created with it. The synchronization logic is left entirely in the hands of the developer. A queue based publication item is ideally suited for scenarios that do not require actual synchronization but require something somewhere in between such as data collection on the client. With data collection, there is no need to detect conflicts, client state information, or server side updates. Therefore, there is no need to add the additional overhead normally associated with a fast refresh or complete refresh publication item as a result of MGP processing. During Sync, normally the MGP manages both the in queues and the out queues. The Queue Interface API, CreateQueuePublicationItem, allows the application developer to manage the in and out queue operations during a synchronization session using a PL/SQL Package by creating the queues themselves. Life Cycle Management Oracle Database Lite provides complete Life Cycle Management for distributing, installing and managing software, data and files on mobile devices and remote systems. It enables a central site support team to manage distributions to an entire workforce from a single management console. A web-based administration interface enables complete server-side management of all mobile applications, devices, users and Mobile Servers. Oracle Database Lite 10gR2 Technical White Paper Page 7

8 Administrators use intuitive tools to publish the mobile application to the production system and have complete control to view, monitor and manage the full mobile chain. Oracle Database Lite s Life Cycle Management infrastructure includes : Application Management User Management System Management Device Management Application Management Provisioning Applications are packaged and published to the Mobile Server repository where they are managed by the web based administration tool Mobile Manager. After publishing the application, the administrator may control application access privileges to users or groups. The Packaging Wizard bundles all application components (executables, DLLs, images, etc.) into a unique self-extracting file for simple provisioning to mobile or lightweight environments. Users provision the Oracle Lite client runtime environment by boot strapping a self extracting setup.exe file from the Mobile Server. Point the client s browser to the URL: This file installs all the client run time software needed including the Lite Database, msync client, device client, DLLs and database utilities. Deployment Once the client device is provisioned, the user may invoke the msync client which will perform a first time sync that deploys the authenticated users applications, appropriate databases and DSN configurations. Mobile Manager Mobile Manager is a web-based administration interface that enables complete serverside management of all mobile applications, devices, users and mobile servers. Administrators have complete control to view, monitor and manage the mobile clients. The Mobile Manager provides these management functions: Modifying application properties. Suspend/Resume applications. Upload and removal of applications from the Mobile Server repository. Oracle Database Lite 10gR2 Technical White Paper Page 8

9 Specifying data sub setting. Adding Web application archive, (WAR), files. Specifying application files for public usage. Administering Users, User Groups and their application access User Management User Management allows the definition of new users and groups. It also allows establishing roles for groups of users and application access permissions. User Management may interface with external validation mechanisms including LDAP and OID. System Management The Mobile Manager interface allows management of all the Mobile Servers in a configuration. This includes detailed information about active user sessions. Trace properties may be dynamically set and allow an administrator to specify trace filters, log locations and trace log size. The Mobile Server configuration file, webtogo.ora, contains Mobile Server operational parameters relating to external authentication, file systems, cache, synchronization and MGP default settings. This setting can be dynamically altered through the System Management interface. Synchronization Manager Synchronization management provides very detailed monitoring of users synchronization results and include details like start and finish times, upload and download duration times, record counts, listing of publications, publication items and device tables. The Synchronization Manager graphical interface allows administrators to monitor and manage the synchronization service, monitor and analyze the performance, administer the configuration, trace synchronization history, browse for synchronization publication and subscription information, and monitor MGP (Message Generator and Processor) performance. The transaction error queue lists transactions that have been flagged as conflict detected and these transactions may be corrected by re-executing or purging. Error Correction Oracle Lite will detect conflicts and resolve conflicts using simple rules; client wins or server wins or custom programmatic resolution. All other errors, such as nullity violations or foreign key constraint violations, are synchronization errors. The Mobile Server does not automatically resolve synchronization errors. Instead, the Mobile Server rolls back the corresponding transactions, and moves the transaction operations into the Mobile Server error queue. Later, Mobile Server database Oracle Database Lite 10gR2 Technical White Paper Page 9

10 administrators can change these transaction operations and re-execute or purge them from the error queue. A Mobile Server synchronization conflict occurs if: Client and the server update the same row. Client and server create rows with the same primary key values. Client deletes the same row that the server updates. Device Management As enterprises deploy more and more applications on small devices, managing these devices presents a crucial constraint on enterprise IT solutions. The Device Management (DM) system provides a solution to administer the deployed devices and remotely manage applications and data in these devices. Device Management System consists of a number of Device Management Clients (DMC) that interacts with a Device Management Server (DMS). Device Management supports the following functionality. Remote inspection of client device hardware and operating system settings. Remote inspection and modification of application configuration settings. Client database information retrieval, validation and Sync with Oracle DB Client device lock down, application removal, application data removal. Client software management. Device configuration files modification. Oracle Database Lite 10gR2 Technical White Paper Page 10

11 Client Stack Server Stack SMC Messaging Client DM Client Messaging Server DM Server Provisioning Server Applications Sync Client Oracle Lite Database Sync Server Mobile Server Repository Figure 3. Device Management Stacks Rapid Application Development The Oracle Lite Rapid Application Development environment offers developers a choice of development platforms including native, Java and Web based. The Oracle Database Lite mobile development kit contains a set of tools, APIs, and code samples that accelerate the development of mobile applications using your favorite mobile development tools for Microsoft Windows CE, Pocket PC, Windows 2000/XP/2003, Linux and Symbian OS. Oracle Database Lite s Packaging Wizard bundles all application components (executables, DLLs, images, etc.) into a unique file used for deployment to mobile or lightweight environments. Development Tools Supported The following development tools and IDEs are supported by Oracle Database Lite: Oracle JDeveloper 10g Microsoft Visual C Metrowerks CodeWarrior 8+ Microsoft Visual Studio.NET 2003 Microsoft EVC 3.0/4.0 Sybase PowerBuilder Borland Delphi JDBC, ODBC, ADO.NET, SODA, C, C++, Object API Native Development Model The Oracle Database Lite Mobile Development Kit provides a set of tools, APIs, and code samples that accelerate the development of native mobile applications using your favorite mobile development tools for Microsoft Windows CE, Pocket PC, Windows 2000/XP/2003 and the Palm Computing Platform. Oracle Database Lite 10gR2 Technical White Paper Page 11

12 Java C, C++, VB C, C++ Mobile Sync JDBC Network ODBC SODA Simple Object Database Access Oracle Lite Database Kernel Figure 4. Oracle Lite Development Model O/S ODBC JDBC SODA 1 ADOCE ADO.NET Windows 32 Yes Yes Yes - Yes Windows CE Yes Yes 2 Yes Yes 3 Yes 4 Linux Yes Yes Yes - - Symbian OS Yes Database Access APIs O/S EVC 3.0 EVC 4.0 VS 6.0 VS.NET 2003 Windows Yes Yes Windows CE 3.0 for PPC 6 Yes Windows CE Yes - Yes Supported Windows Development Tools 1 Simple Object Data Access (C++ database access library) 2 No Java Stored Procedures & Triggers. Certified for Crème VM, IBM J9. 3 Windows CE 3.0 for PPC (also known as Pocket PC 2002) only 4 Only Microsoft.Net Compact Framework 5 Versions 7.0 and 8.0 with UIQ Windows CE 3.0 for H/PC no longer supported Oracle Database Lite 10gR2 Technical White Paper Page 12

13 O/S ARM XScale X86 emulator Windows CE 3.0 for PPC Yes - Yes Windows CE Yes Yes Yes Supported Windows CE/CPU Configurations Web Development Model Using the Mobile Development Kit, you can develop Web based applications. You can build Web based applications using Java Servlets, Java Server Pages (JSP), and Java Beans. Follow these steps to develop Web based applications. 1. Developers create web based applications using Servlets, Applets and/or JSPs. 2. Completed and tested applications are published to the Mobile Server using the Packaging Wizard. 3. Invoke the boot strap setup.exe to provision the Oracle Lite client runtime environment. 4. Using msync client, applications are provisioned to the client using synchronization from the Mobile Server repository. 5. Once the web application objects are provisioned they are served to the client s browser by a light weight application server. 6. The client application will continue to work and appear as if it is connected to the network. 7. When the client reconnects to the Mobile Server the Lite database may be synchronized. Java Development Model Using the Mobile Development Kit, you can develop Java applications. You can build Java applications using Java Servlets, Java Server Pages (JSP), and Java Beans. To write and debug Java programs, you can use any Java development tool. You must provide a Java runtime environment and ensure that you set the CLASSPATH and PATH correctly. 7 Also known as Pocket PC 2003 or Windows Mobile 2003 Oracle Database Lite 10gR2 Technical White Paper Page 13

14 O/S Windows 32 - Web Windows 32 - Native Windows CE Linux JDBC Yes 8 Yes Yes 9 Yes Java SP/Trigger Yes 10 Yes - Yes Java Server Pages Java Servlets BC4J Yes Struts Yes Supported Java Development Packaging Wizard The Packaging Wizard is a standalone application is found in the MDK that allows developers to: Create and publish a new mobile application to the Mobile Server. Specifying New Application Details Listing Application Files Adding Servlets (For Web Applications Only) Entering Database Information Defining Application Roles Defining Snapshots for Replication Defining Sequences for Replication Edit an existing mobile application Package a mobile application for easy deployment 8 Oracle Lite offers three different JDBC drivers: a) Embedded (native) JDBC driver- JDBC compliant. Supports Java applications to communicate directly with Oracle Lite's database. Oracle Lite provides a limited number of extensions specified by JDBC 2.0. These extensions are compatible with the Oracle Database JDBC implementation b) Type 2 driver c) Type 4 driver - 100% Java implementation. Requires the multi-user database version 9 See Developer's Guide for Windows CE for a complete list of JDBC functions 10 Java SP/Triggers are not supported in the Web-to-Go application model. However Java SP can be replicated using the Consolidator API 11 Latest version of Oracle JDeveloper 10g (10.1.3) Oracle Database Lite 10gR2 Technical White Paper Page 14

15 Mobile Database Workbench (MDW) The Oracle Lite Mobile Database Workbench (MDW) is a mobile application developer tool that enables a mobile application schema to be designed, tested and tuned before developing the application. Using MDW, various mobile application schema definition entities can be created and manipulated, such as Publication, Publication Item, Sequence, Script and Resource. The Mobile Database Workbench is a visual tool that uses a set of well defined interview steps to guide mobile application developers through the building of their application schema definition and hints. It also enables developers to view, manipulate and tune the preexisting schema definition and hint specification. This tool provides the ability to test the application schema definition by allowing synchronization of data between a mobile database (sitting on a real mobile device such as a laptop or Pocket-PC) with the enterprise database, all from within the tool environment. Additionally, MDW integrates with the CONSPERF to provide visual evaluation and performance-tuning of snapshot queries the entities that define the mobile application schema entities, namely the snapshots. Lastly, the tool provides the application developer with the ability to save and restore MDW sessions. Branch Office Branch Office provides access to the Branch Office database for up to 32 concurrent networked users. Branch Office enables the deployment of enterprise data and applications to geographically distributed sites running Branch Office database (Departmental Database Server). Each Branch Office database is centrally managed and supports multiple client connections, thereby eliminating local database administration tasks. Figure 5. Oracle Lite Branch Office Model Middle-Tier Option for Mobile Server Oracle Database Lite uses a middle-tier to communicate between the clients and the back-end database. You must use one of the following as the middle-tier: Oracle Database Lite 10gR2 Technical White Paper Page 15

16 Stand alone OC4J for development environments Oracle Application Server for production environments Stand Alone OC4J Stand Alone OC4J is automatically installed with Oracle Database Lite and this provides a standalone Mode for development environments. Mobile Server in standalone mode uses the standalone version of Oracle Containers for J2EE (OC4J). This is the preferred configuration for development and testing but it will support only a limited number of concurrent users. Oracle Application Server Production environments require either Oracle Application Server 10g. The application server is not installed with Oracle Database Lite and must be installed before installing Oracle Database Lite Mobile Server. The Oracle Application Server production environment will support large numbers of users, provides caching, load balancing, centralized management, security, and Single Sign On support. Components Distributed on the CD The software distributed on the Oracle Lite Database CD distributes software to be installed into two categories. The Mobile Server installation installs the Mobile Server which provides the following services: Data Synchronization User management Application management Device management The Mobile Development Kit may be installed separately or optionally and the following components are installed with the MDK: Complete development environment Oracle Lite small footprint database Branch Office multi-user database Application Packaging Wizard Web-to-Go development environment for web based apps ORACLE IS YOUR PARTNER OF CHOICE Oracle is the partner of choice for extending your Oracle Database. As enterprises look to enhance their business with mobile requirements, the need for mobile infrastructure becomes evident. The ideal mobile infrastructure must (1) enable the Oracle Database Lite 10gR2 Technical White Paper Page 16

17 development of your mobile strategy, (2) support the full range of devices, application platforms, and (3) leverage existing IT investments. Oracle Database Lite is a complete, end-to-end solution for deploying offline mobile solutions offering: Fast and efficient application development tools Scalable, high-performance and secure mobile database with synchronization to your Oracle Database to run your applications Complete tools to manage your application, users, devices and system SUMMARY Until recently, most business applications have only been accessible from network tethered PCs in offices, away from where a business productive assets and employees are at work, its customers are serviced, and its operations performed. A new generation of lightweight and powerful mobile devices combined with inexpensive, widely available wireless data connections promise to redefine the reach of Enterprise applications. Oracle is committed to servicing the mobile computing needs of businesses worldwide with solutions and software platforms that offer the depth of feature, scalability, reliability and performance. Oracle Database Lite 10gR2 Technical White Paper Page 17

18 Oracle Database Lite 10gR2 Technical White Paper June 2006 Author: Philip Stephenson Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A. Worldwide Inquiries: Phone: Fax: oracle.com Copyright 2006, Oracle. All rights reserved. This document is provided for information purposes only and the contents hereof are subject to change without notice. This document is not warranted to be error-free, nor subject to any other warranties or conditions, whether expressed orally or implied in law, including implied warranties and conditions of merchantability or fitness for a particular purpose. We specifically disclaim any liability with respect to this document and no contractual obligations are formed either directly or indirectly by this document. This document may not be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose, without our prior written permission. Oracle, JD Edwards, and PeopleSoft are registered trademarks of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Adding Mobile Capability to an Enterprise Application With Oracle Database Lite. An Oracle White Paper June 2007

Adding Mobile Capability to an Enterprise Application With Oracle Database Lite. An Oracle White Paper June 2007 Adding Mobile Capability to an Enterprise Application With Oracle Database Lite An Oracle White Paper June 2007 Adding Mobile Capability to an Enterprise Application With Oracle Database Lite Table of

More information

Oracle Database Mobile Server, Version 12.2

Oracle Database Mobile Server, Version 12.2 O R A C L E D A T A S H E E T Oracle Database Mobile Server, Version 12.2 Oracle Database Mobile Server 12c (ODMS) is a highly optimized, robust and secure way to connect mobile and embedded Internet of

More information

Oracle Database Lite. Automatic Synchronization White Paper. An Oracle White Paper August 2008

Oracle Database Lite. Automatic Synchronization White Paper. An Oracle White Paper August 2008 Oracle Database Lite Automatic Synchronization White Paper An Oracle White Paper August 2008 Oracle Database Lite Automatic Synchronization White Paper OVERVIEW Oracle Database Lite allows field workers

More information

Developing a Mobile Web-based Application with Oracle9i Lite Web-to-Go

Developing a Mobile Web-based Application with Oracle9i Lite Web-to-Go Developing a Mobile Web-based Application with Oracle9i Lite Web-to-Go Christian Antognini Trivadis AG Zürich, Switzerland Introduction More and more companies need to provide their employees with full

More information

Improve Data Integration with Changed Data Capture. An Oracle Data Integrator Technical Brief Updated December 2006

Improve Data Integration with Changed Data Capture. An Oracle Data Integrator Technical Brief Updated December 2006 Improve Data Integration with Changed Data Capture An Oracle Data Integrator Technical Brief Updated December 2006 Improve Data Integration with Changed Data Capture: An Oracle Data Integrator Technical

More information

An Oracle White Paper November Primavera Unifier Integration Overview: A Web Services Integration Approach

An Oracle White Paper November Primavera Unifier Integration Overview: A Web Services Integration Approach An Oracle White Paper November 2012 Primavera Unifier Integration Overview: A Web Services Integration Approach Introduction Oracle s Primavera Unifier offers an extensible interface platform based on

More information

An Oracle White Paper October The New Oracle Enterprise Manager Database Control 11g Release 2 Now Managing Oracle Clusterware

An Oracle White Paper October The New Oracle Enterprise Manager Database Control 11g Release 2 Now Managing Oracle Clusterware An Oracle White Paper October 2009 The New Oracle Enterprise Manager Database Control 11g Release 2 Now Managing Oracle Clusterware Introduction Oracle Enterprise Manager provides a single, integrated

More information

An Oracle White Paper September Security and the Oracle Database Cloud Service

An Oracle White Paper September Security and the Oracle Database Cloud Service An Oracle White Paper September 2012 Security and the Oracle Database Cloud Service 1 Table of Contents Overview... 3 Security architecture... 4 User areas... 4 Accounts... 4 Identity Domains... 4 Database

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 00 Preparing the Environment Page 1 of 10 Overview For this workshop, you will use the Oracle WebCenter Portal Jump Start Kit, which is a utility that

More information

Achieving High Availability with Oracle Cloud Infrastructure Ravello Service O R A C L E W H I T E P A P E R J U N E

Achieving High Availability with Oracle Cloud Infrastructure Ravello Service O R A C L E W H I T E P A P E R J U N E Achieving High Availability with Oracle Cloud Infrastructure Ravello Service O R A C L E W H I T E P A P E R J U N E 2 0 1 8 Revision History The following revisions have been made to this white paper

More information

Oracle Application Development Framework Overview

Oracle Application Development Framework Overview An Oracle White Paper July 2009 Oracle Application Development Framework Overview Introduction... 1 Oracle ADF Making Java EE Development Simpler... 2 THE ORACLE ADF ARCHITECTURE... 3 The Business Services

More information

Oracle Fusion Middleware 11g Oracle Access Manager Frequently Asked Questions June 2009

Oracle Fusion Middleware 11g Oracle Access Manager Frequently Asked Questions June 2009 Oracle Fusion Middleware 11g Oracle Access Manager 10.1.4.3.0 Frequently Asked Questions June 2009 This FAQ addresses frequently asked questions relating specifically to Oracle Access Manager (OAM) 10.1.4.3.0

More information

An Oracle White Paper Released April 2008

An Oracle White Paper Released April 2008 Performance and Scalability Benchmark: Siebel CRM Release 8.0 Industry Applications on HP BL685c Servers running Microsoft Windows 2003 Server Enterprise Edition and Oracle 10gR2 DB on HP rx6600 An Oracle

More information

An Oracle Technical White Paper September Oracle VM Templates for PeopleSoft

An Oracle Technical White Paper September Oracle VM Templates for PeopleSoft An Oracle Technical White Paper September 2010 Oracle VM Templates for PeopleSoft 1 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes

More information

Frequently Asked Questions Oracle Content Management Integration. An Oracle White Paper June 2007

Frequently Asked Questions Oracle Content Management Integration. An Oracle White Paper June 2007 Frequently Asked Questions Oracle Content Management Integration An Oracle White Paper June 2007 NOTE: The following is intended to outline our general product direction. It is intended for information

More information

Integrating Oracle Application Express with Oracle Application Server 10g. An Oracle White Paper April 2005

Integrating Oracle Application Express with Oracle Application Server 10g. An Oracle White Paper April 2005 Integrating Oracle Application Express with Oracle Application Server 10g An Oracle White Paper April 2005 Integrating Oracle Application Express with Oracle Application Server 10g Introduction... 3 Integration

More information

Performance and Scalability Benchmark: Siebel CRM Release 7 on HP-UX Servers and Oracle9i Database. An Oracle White Paper Released October 2003

Performance and Scalability Benchmark: Siebel CRM Release 7 on HP-UX Servers and Oracle9i Database. An Oracle White Paper Released October 2003 Performance and Scalability Benchmark: Siebel CRM Release 7 on HP-UX Servers and Oracle9i Database An Oracle White Paper Released October 2003 Performance and Scalability Benchmark: Siebel CRM Release

More information

An Oracle White Paper. Released April 2013

An Oracle White Paper. Released April 2013 Performance and Scalability Benchmark: Siebel CRM Release 8.1.1.4 Industry Applications and Oracle 11.2.0.3 Database on Oracle's SPARC T5 Servers and Oracle Solaris An Oracle White Paper Released April

More information

An Oracle White Paper October Deploying and Developing Oracle Application Express with Oracle Database 12c

An Oracle White Paper October Deploying and Developing Oracle Application Express with Oracle Database 12c An Oracle White Paper October 2013 Deploying and Developing Oracle Application Express with Oracle Database 12c Disclaimer The following is intended to outline our general product direction. It is intended

More information

Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter. An Oracle White Paper September 2008

Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter. An Oracle White Paper September 2008 Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter An Oracle White Paper September 2008 Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft

More information

Oracle Database 10g Release 2 Database Vault - Restricting the DBA From Accessing Business Data

Oracle Database 10g Release 2 Database Vault - Restricting the DBA From Accessing Business Data Oracle Database 10g Release 2 Database Vault - Restricting the DBA From Accessing Business Data An Oracle White Paper August 2006 Oracle Database Vault Overview Oracle Database Vault enables you to Restrict

More information

Oracle Database Mobile Server

Oracle Database Mobile Server Oracle Database Mobile Server Developer's Guide Release 11.1.0 E22677-03 September 2011 Oracle Database Mobile Server Developer's Guide Release 11.1.0 E22677-03 Copyright 1997, 2011, Oracle and/or its

More information

Oracle Database Lite. Developer's Guide 10g (10.3.0) B

Oracle Database Lite. Developer's Guide 10g (10.3.0) B Oracle Database Lite Developer's Guide 10g (10.3.0) B28923-01 April 2007 Oracle Database Lite Developer s Guide 10g (10.3.0) B28923-01 Copyright 1997, 2007, Oracle. All rights reserved. The Programs (which

More information

Installation Instructions: Oracle XML DB XFILES Demonstration. An Oracle White Paper: November 2011

Installation Instructions: Oracle XML DB XFILES Demonstration. An Oracle White Paper: November 2011 An Oracle White Paper: November 2011 Installation Instructions: Oracle XML DB XFILES Demonstration Table of Contents Installation Instructions: Oracle XML DB XFILES Demonstration... 1 Executive Overview...

More information

An Oracle White Paper October Release Notes - V Oracle Utilities Application Framework

An Oracle White Paper October Release Notes - V Oracle Utilities Application Framework An Oracle White Paper October 2012 Release Notes - V4.2.0.0.0 Oracle Utilities Application Framework Introduction... 2 Disclaimer... 2 Deprecation of Functionality... 2 New or Changed Features... 4 Native

More information

Next-Generation SOA Infrastructure. An Oracle White Paper May 2007

Next-Generation SOA Infrastructure. An Oracle White Paper May 2007 Next-Generation SOA Infrastructure An Oracle White Paper May 2007 Next-Generation SOA Infrastructure INTRODUCTION Today, developers are faced with a bewildering array of technologies for developing Web

More information

April Understanding Federated Single Sign-On (SSO) Process

April Understanding Federated Single Sign-On (SSO) Process April 2013 Understanding Federated Single Sign-On (SSO) Process Understanding Federated Single Sign-On Process (SSO) Disclaimer The following is intended to outline our general product direction. It is

More information

ORACLEAS PORTAL 10g (10.1.4) INTEGRATE YOUR ENTERPRISE CONTENT MANAGEMENT SYSTEMS INTO ORACLE PORTAL

ORACLEAS PORTAL 10g (10.1.4) INTEGRATE YOUR ENTERPRISE CONTENT MANAGEMENT SYSTEMS INTO ORACLE PORTAL Oracle WebCenter Technical Note ORACLEAS PORTAL 10g (10.1.4) INTEGRATE YOUR ENTERPRISE CONTENT MANAGEMENT SYSTEMS INTO ORACLE PORTAL April 2007 INTRODUCTION In many enterprise portal environments, it is

More information

Oracle Data Provider for.net Microsoft.NET Core and Entity Framework Core O R A C L E S T A T E M E N T O F D I R E C T I O N F E B R U A R Y

Oracle Data Provider for.net Microsoft.NET Core and Entity Framework Core O R A C L E S T A T E M E N T O F D I R E C T I O N F E B R U A R Y Oracle Data Provider for.net Microsoft.NET Core and Entity Framework Core O R A C L E S T A T E M E N T O F D I R E C T I O N F E B R U A R Y 2 0 1 8 Disclaimer The following is intended to outline our

More information

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005 Oracle Database 10g Resource Manager An Oracle White Paper October 2005 Oracle Database 10g Resource Manager INTRODUCTION... 3 SYSTEM AND RESOURCE MANAGEMENT... 3 ESTABLISHING RESOURCE PLANS AND POLICIES...

More information

Technical Upgrade Guidance SEA->SIA migration

Technical Upgrade Guidance SEA->SIA migration Technical Upgrade Guidance SEA->SIA migration Oracle Siebel Customer Relationship Management Applications Siebel Industry-Driven CRM November 2011 This document is intended to outline our general product

More information

An Oracle White Paper June Enterprise Database Cloud Deployment with Oracle SuperCluster T5-8

An Oracle White Paper June Enterprise Database Cloud Deployment with Oracle SuperCluster T5-8 An Oracle White Paper June 2013 Enterprise Database Cloud Deployment with Oracle SuperCluster T5-8 Introduction Databases form the underlying foundation for most business applications by storing, organizing,

More information

An Oracle White Paper February Combining Siebel IP 2016 and native OPA 12.x Interviews

An Oracle White Paper February Combining Siebel IP 2016 and native OPA 12.x Interviews An Oracle White Paper February 2017 Combining Siebel IP 2016 and native OPA 12.x Interviews Purpose This whitepaper is a guide for Siebel customers that wish to take advantage of OPA 12.x functionality

More information

Oracle Primavera P6 Enterprise Project Portfolio Management Performance and Sizing Guide. An Oracle White Paper April 2011

Oracle Primavera P6 Enterprise Project Portfolio Management Performance and Sizing Guide. An Oracle White Paper April 2011 Oracle Primavera P6 Enterprise Project Portfolio Management Performance and Sizing Guide An Oracle White Paper April 2011 Disclaimer The following is intended to outline our general product direction.

More information

Highly Available Forms and Reports Applications with Oracle Fail Safe 3.0

Highly Available Forms and Reports Applications with Oracle Fail Safe 3.0 Highly Available Forms and Reports Applications with Oracle Fail Safe 3.0 High Availability for Windows NT An Oracle Technical White Paper Robert Cheng Oracle New England Development Center System Products

More information

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 0. Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Oracle CIoud Infrastructure Load Balancing Connectivity with Ravello O R A C L E W H I T E P A P E R M A R C H

Oracle CIoud Infrastructure Load Balancing Connectivity with Ravello O R A C L E W H I T E P A P E R M A R C H Oracle CIoud Infrastructure Load Balancing Connectivity with Ravello O R A C L E W H I T E P A P E R M A R C H 2 0 1 8 Oracle Cloud Infrastructure Ravello Cloud Service Oracle Cloud Infrastructure Ravello

More information

An Oracle White Paper September Oracle Utilities Meter Data Management Demonstrates Extreme Performance on Oracle Exadata/Exalogic

An Oracle White Paper September Oracle Utilities Meter Data Management Demonstrates Extreme Performance on Oracle Exadata/Exalogic An Oracle White Paper September 2011 Oracle Utilities Meter Data Management 2.0.1 Demonstrates Extreme Performance on Oracle Exadata/Exalogic Introduction New utilities technologies are bringing with them

More information

Oracle Data Masking and Subsetting

Oracle Data Masking and Subsetting Oracle Data Masking and Subsetting Frequently Asked Questions (FAQ) S E P T E M B E R 2 0 1 6 Product Overview Q: What is Data Masking and Subsetting? A: Data Masking or Static Data Masking is the process

More information

Oracle Database Vault

Oracle Database Vault An Oracle White Paper July 2009 Oracle Database Vault Introduction... 3 Oracle Database Vault... 3 Oracle Database Vault and Regulations... 4 Oracle Database Vault Realms... 5 Oracle Database Vault Command

More information

Managing Metadata with Oracle Data Integrator. An Oracle Data Integrator Technical Brief Updated December 2006

Managing Metadata with Oracle Data Integrator. An Oracle Data Integrator Technical Brief Updated December 2006 Managing Metadata with Oracle Data Integrator An Oracle Data Integrator Technical Brief Updated December 2006 Managing Metadata with Oracle Data Integrator: An Oracle Data Integrator Technical Brief Metadata

More information

ORACLE IDENTITY MANAGER SIZING GUIDE. An Oracle White Paper March 2007

ORACLE IDENTITY MANAGER SIZING GUIDE. An Oracle White Paper March 2007 ORACLE IDENTITY MANAGER SIZING GUIDE An Oracle White Paper March 2007 Note The following is intended to provide consideration guidelines for sizing Oracle Identity Manager. It is intended for information

More information

Deploying the Zero Data Loss Recovery Appliance in a Data Guard Configuration ORACLE WHITE PAPER MARCH 2018

Deploying the Zero Data Loss Recovery Appliance in a Data Guard Configuration ORACLE WHITE PAPER MARCH 2018 Deploying the Zero Data Loss Recovery Appliance in a Data Guard Configuration ORACLE WHITE PAPER MARCH 2018 Table of Contents Introduction 1 Overview 2 Prerequisites 2 Deploying Recovery Appliances with

More information

Configuring Oracle Business Intelligence Enterprise Edition to Support Teradata Database Query Banding

Configuring Oracle Business Intelligence Enterprise Edition to Support Teradata Database Query Banding A Joint Oracle Teradata White Paper September 2011 Configuring Oracle Business Intelligence Enterprise Edition to Support Teradata Database Query Banding Introduction... 1 Step 1. Query Band Configuration

More information

An Oracle White Paper September Upgrade Methods for Upgrading to Oracle Database 11g Release 2

An Oracle White Paper September Upgrade Methods for Upgrading to Oracle Database 11g Release 2 An Oracle White Paper September 2010 Upgrade Methods for Upgrading to Oracle Database 11g Release 2 Introduction... 1 Database Upgrade Methods... 2 Database Upgrade Assistant (DBUA)... 2 Manual Upgrade...

More information

Oracle Database 10g Workspace Manager Support for Oracle Spatial Topology Data Model. An Oracle White Paper May 2005

Oracle Database 10g Workspace Manager Support for Oracle Spatial Topology Data Model. An Oracle White Paper May 2005 Oracle Database 10g Workspace Manager Support for Oracle Spatial Topology Data Model An Oracle White Paper May 2005 Contents Executive Overview... 3 Introduction... 3 Versioning a Topology... 4 Adding

More information

An Oracle Technical White Paper May Deploying Oracle Beehive with BlackBerry Enterprise Server for MDS Applications

An Oracle Technical White Paper May Deploying Oracle Beehive with BlackBerry Enterprise Server for MDS Applications An Oracle Technical White Paper May 2010 Deploying Oracle Beehive with BlackBerry Enterprise Server for MDS Applications Introduction... 2 Solution Overview... 3 BlackBerry Infrastructure... 4 BlackBerry

More information

Bring the Java World and Web Services into Your Portal. An Oracle White Paper September 2005

Bring the Java World and Web Services into Your Portal. An Oracle White Paper September 2005 Bring the Java World and Web Services into Your Portal An Oracle White Paper September 2005 NOTE: The following is intended to outline our general product direction. It is intended for information purposes

More information

Oracle Application Server 10g Integration Interconnect. An Oracle Technical White Paper January 2005

Oracle Application Server 10g Integration Interconnect. An Oracle Technical White Paper January 2005 Oracle Application Server 10g Integration Interconnect An Oracle Technical White Paper January 2005 Introduction... 2 FeatureS... 2 Clean Separation of Integration Logic from Integration Platform... 2

More information

ORACLE WEBLOGIC SERVER 10g R3 ENTERPRISE EDITION

ORACLE WEBLOGIC SERVER 10g R3 ENTERPRISE EDITION ORACLE WEBLOGIC SERVER 10g R3 ENTERPRISE EDITION KEY FEATURES FEATURES High performance clustering and failover capabilities Low-overhead Java application monitoring and diagnostics Flexible download and

More information

Oracle Financial Services Regulatory Reporting for US Federal Reserve Lombard Risk Integration Pack

Oracle Financial Services Regulatory Reporting for US Federal Reserve Lombard Risk Integration Pack Oracle Financial Services Regulatory Reporting for US Federal Reserve Lombard Risk Integration Pack Installation Guide Release 8.0.4.1.0 July 2017 Executive Summary This document includes the necessary

More information

Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data

Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data June 2006 Note: This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality,

More information

Profitability Application Pack Installation Guide Release

Profitability Application Pack Installation Guide Release Profitability Application Pack Installation Guide Release 8.0.6.1.0 October 2018 Document Versioning Version Number Revision Date Changes Done 1.0 10 September 2018 Final version released 1.1 5 October

More information

ORACLE USER PRODUCTIVITY KIT PROFESSIONAL V6.3 TECHNICAL SPECIFICATIONS (WITH ENABLEMENT SERVICE PACK 3)

ORACLE USER PRODUCTIVITY KIT PROFESSIONAL V6.3 TECHNICAL SPECIFICATIONS (WITH ENABLEMENT SERVICE PACK 3) ORACLE USER PRODUCTIVITY KIT PROFESSIONAL V6.3 TECHNICAL SPECIFICATIONS (WITH ENABLEMENT SERVICE PACK 3) KEY FEATURES FEATURES OF ORACLE USER PRODUCTIVITY KIT Single, synchronized authoring session for

More information

Cloud Operations for Oracle Cloud Machine ORACLE WHITE PAPER MARCH 2017

Cloud Operations for Oracle Cloud Machine ORACLE WHITE PAPER MARCH 2017 Cloud Operations for Oracle Cloud Machine ORACLE WHITE PAPER MARCH 2017 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

An Oracle White Paper November Oracle RAC One Node 11g Release 2 User Guide

An Oracle White Paper November Oracle RAC One Node 11g Release 2 User Guide An Oracle White Paper November 2009 Oracle RAC One Node 11g Release 2 User Guide Introduction... 1 Software Installation... 3 How to Configure an Oracle RAC One Node Database... 6 Rolling Patch Application

More information

Maximum Availability Architecture. Oracle Best Practices For High Availability

Maximum Availability Architecture. Oracle Best Practices For High Availability Oracle Database 10g Release 2: Roadmap to Maximum Availability Architecture Oracle Maximum Availability Architecture White Paper April 2006 Maximum Availability Architecture Oracle Best Practices For High

More information

An Oracle White Paper October Minimizing Planned Downtime of SAP Systems with the Virtualization Technologies in Oracle Solaris 10

An Oracle White Paper October Minimizing Planned Downtime of SAP Systems with the Virtualization Technologies in Oracle Solaris 10 An Oracle White Paper October 2010 Minimizing Planned Downtime of SAP Systems with the Virtualization Technologies in Oracle Solaris 10 Introduction When business-critical systems are down for a variety

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 03 Integrating Content Page 1 of 12 Overview WebCenter Content is the content repository for WebCenter Portal. To leverage the content stored in the repository,

More information

Application Container Cloud

Application Container Cloud APPLICATION CONTAINER CLOUD Application Container Cloud with Java SE and Node The Best Java SE and Node Cloud. Get the choice of either Oracle Java SE Advanced, including Flight Recorder for production

More information

Oracle Database Vault

Oracle Database Vault Oracle Database Vault DBA Administrative Best Practices ORACLE WHITE PAPER MAY 2015 Table of Contents Introduction 2 Database Administration Tasks Summary 3 General Database Administration Tasks 4 Managing

More information

An Oracle White Paper December, 3 rd Oracle Metadata Management v New Features Overview

An Oracle White Paper December, 3 rd Oracle Metadata Management v New Features Overview An Oracle White Paper December, 3 rd 2014 Oracle Metadata Management v12.1.3.0.1 Oracle Metadata Management version 12.1.3.0.1 - December, 3 rd 2014 Disclaimer This document is for informational purposes.

More information

Oracle Privileged Account Manager

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

More information

Bulk Processing with Oracle Application Integration Architecture. An Oracle White Paper January 2009

Bulk Processing with Oracle Application Integration Architecture. An Oracle White Paper January 2009 Bulk Processing with Oracle Application Integration Architecture An Oracle White Paper January 2009 Bulk Processing with Oracle Application Integration Architecture Introduction... 3 Oracle Application

More information

Benefits of an Exclusive Multimaster Deployment of Oracle Directory Server Enterprise Edition

Benefits of an Exclusive Multimaster Deployment of Oracle Directory Server Enterprise Edition An Oracle White Paper February 2012 Benefits of an Exclusive Multimaster Deployment of Oracle Directory Server Enterprise Edition Disclaimer The following is intended to outline our general product direction.

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

Fast Track Model Based Design and Development with Oracle9i Designer. An Oracle White Paper August 2002

Fast Track Model Based Design and Development with Oracle9i Designer. An Oracle White Paper August 2002 Fast Track Model Based Design and Development with Oracle9i Designer An Oracle White Paper August 2002 Fast Track Model Based Design and Development with Oracle9i Designer Executive Overivew... 3 Introduction...

More information

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2 An Oracle White Paper September 2009 Methods for Upgrading to Oracle Database 11g Release 2 Introduction... 1 Database Upgrade Methods... 2 Database Upgrade Assistant (DBUA)... 2 Manual Upgrade... 3 Export

More information

Oracle Database 12c: JMS Sharded Queues

Oracle Database 12c: JMS Sharded Queues Oracle Database 12c: JMS Sharded Queues For high performance, scalable Advanced Queuing ORACLE WHITE PAPER MARCH 2015 Table of Contents Introduction 2 Architecture 3 PERFORMANCE OF AQ-JMS QUEUES 4 PERFORMANCE

More information

Oracle WebCenter Suite Integrating Secure Enterprise Search

Oracle WebCenter Suite Integrating Secure Enterprise Search Oracle WebCenter Suite Integrating Secure Enterprise Search An Oracle White Paper January 2007 Oracle WebCenter Suite Integrating Secure Enterprise Search INTRODUCTION As organizations continually reinvent

More information

Oracle Application Server 10g Oracle XML Developer s Kit Frequently Asked Questions September, 2005

Oracle Application Server 10g Oracle XML Developer s Kit Frequently Asked Questions September, 2005 Oracle Application Server 10g Oracle XML Developer s Kit Frequently Asked Questions September, 2005 This FAQ addresses frequently asked questions relating to the XML features of Oracle XML Developer's

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 10 Creating a Custom Portlet Page 1 of 27 Overview WebCenter Portal offers a few different development strategies for transactional features; portlets

More information

Loading User Update Requests Using HCM Data Loader

Loading User Update Requests Using HCM Data Loader Loading User Update Requests Using HCM Data Loader Oracle Fusion Human Capital Management 11g Release 11 (11.1.11) Update 8 O R A C L E W H I T E P A P E R N O V E M B E R 2 0 1 7 Table of Contents Loading

More information

Data Capture Recommended Operating Environments

Data Capture Recommended Operating Environments Oracle Insurance Data Capture Recommended Operating Environments Release 5.2 October 2014 CONTENTS STATEMENT OF PURPOSE... 3 OIDC Hardware Configuration Example... 4 OIDC Workflow Example... 5 QUICK VIEW...

More information

UPK Professional Technical Specifications. Version

UPK Professional Technical Specifications. Version UPK Professional Technical Specifications Version 11.1.0.1 Table of Contents Introduction... 3 Multi-user Install... 3 Server Requirements for a Multi-user Install... 3... 3... 3 Database... 3 Client Requirements

More information

October Oracle Application Express Statement of Direction

October Oracle Application Express Statement of Direction October 2017 Oracle Application Express Statement of Direction Disclaimer This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle.

More information

An Oracle White Paper April Oracle Application Express 5.0 Overview

An Oracle White Paper April Oracle Application Express 5.0 Overview An Oracle White Paper April 2015 Oracle Application Express 5.0 Overview Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

Leverage the Oracle Data Integration Platform Inside Azure and Amazon Cloud

Leverage the Oracle Data Integration Platform Inside Azure and Amazon Cloud Leverage the Oracle Data Integration Platform Inside Azure and Amazon Cloud WHITE PAPER / AUGUST 8, 2018 DISCLAIMER The following is intended to outline our general product direction. It is intended for

More information

Key Features. High-performance data replication. Optimized for Oracle Cloud. High Performance Parallel Delivery for all targets

Key Features. High-performance data replication. Optimized for Oracle Cloud. High Performance Parallel Delivery for all targets To succeed in today s competitive environment, you need real-time information. This requires a platform that can unite information from disparate systems across your enterprise without compromising availability

More information

Oracle Web Service Manager 11g Component Level Role Authorization (in SOA Suite) March, 2012

Oracle Web Service Manager 11g Component Level Role Authorization (in SOA Suite) March, 2012 Oracle Web Service Manager 11g Component Level Role Authorization (in SOA Suite) March, 2012 Step-by-Step Instruction Guide Author: Prakash Yamuna Senior Development Manager Oracle Corporation Table of

More information

SOA Cloud Service Automatic Service Migration

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

More information

Advanced Global Intercompany Systems : Transaction Account Definition (TAD) In Release 12

Advanced Global Intercompany Systems : Transaction Account Definition (TAD) In Release 12 Advanced Global Intercompany Systems : Transaction Account Definition (TAD) In Release 12 An Oracle White Paper [May] [2011] TABLE OF CONTENTS Executive Overview... 3 Introduction... 3 Scope... 3 Overview...

More information

An Oracle White Paper May Oracle VM 3: Overview of Disaster Recovery Solutions

An Oracle White Paper May Oracle VM 3: Overview of Disaster Recovery Solutions An Oracle White Paper May 2014 Oracle VM 3: Overview of Disaster Recovery Solutions Contents Introduction... 1 Overview of DR Solutions with Oracle VM... 2 Choose your DR solution path... 2 Continuous

More information

Data Capture Recommended Operating Environments

Data Capture Recommended Operating Environments Oracle Insurance Data Capture Recommended Operating Environments Release 4.5 February 2011 CONTENTS STATEMENT OF PURPOSE... 3 HARDWARE / SOFTWARE REQUIREMENTS... 4 Server Hardware... 4 Server Software...

More information

Oracle JD Edwards EnterpriseOne Object Usage Tracking Performance Characterization Using JD Edwards EnterpriseOne Object Usage Tracking

Oracle JD Edwards EnterpriseOne Object Usage Tracking Performance Characterization Using JD Edwards EnterpriseOne Object Usage Tracking Oracle JD Edwards EnterpriseOne Object Usage Tracking Performance Characterization Using JD Edwards EnterpriseOne Object Usage Tracking ORACLE WHITE PAPER NOVEMBER 2017 Disclaimer The following is intended

More information

Oracle Mobile Application Framework

Oracle Mobile Application Framework Oracle Mobile Application Framework Oracle Mobile Application Framework (Oracle MAF) is a hybrid-mobile development framework that enables development teams to rapidly develop single-source applications

More information

Oracle JD Edwards EnterpriseOne Object Usage Tracking Performance Characterization Using JD Edwards EnterpriseOne Object Usage Tracking

Oracle JD Edwards EnterpriseOne Object Usage Tracking Performance Characterization Using JD Edwards EnterpriseOne Object Usage Tracking Oracle JD Edwards EnterpriseOne Object Usage Tracking Performance Characterization Using JD Edwards EnterpriseOne Object Usage Tracking ORACLE WHITE PAPER JULY 2017 Disclaimer The following is intended

More information

Migrating VMs from VMware vsphere to Oracle Private Cloud Appliance O R A C L E W H I T E P A P E R O C T O B E R

Migrating VMs from VMware vsphere to Oracle Private Cloud Appliance O R A C L E W H I T E P A P E R O C T O B E R Migrating VMs from VMware vsphere to Oracle Private Cloud Appliance 2.3.1 O R A C L E W H I T E P A P E R O C T O B E R 2 0 1 7 Table of Contents Introduction 2 Environment 3 Install Coriolis VM on Oracle

More information

An Oracle White Paper Released October 2008

An Oracle White Paper Released October 2008 Performance and Scalability Benchmark: Siebel CRM Release 8.0 Industry Applications and Oracle 10g R2 DB on Sun SPARC Enterprise T5440 server running the Solaris 10 OS An Oracle White Paper Released October

More information

SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4)

SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4) Oracle Application Server Portal Technical Note SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4) November 2005 INTRODUCTION This Technical Note describes how to setup up and configure Oracle

More information

WHAT S NEW IN ORACLE USER PRODUCTIVITY KIT PROFESSIONAL

WHAT S NEW IN ORACLE USER PRODUCTIVITY KIT PROFESSIONAL WHAT S NEW IN ORACLE USER PRODUCTIVITY KIT PROFESSIONAL Release 11.1, ESP1 Overview Oracle User Productivity Kit v11.1 improves existing functionality and provides powerful new features that further the

More information

Oracle HCM Cloud Common Features

Oracle HCM Cloud Common Features Oracle HCM Cloud Common Features Release 11 Release Content Document December 2015 Revised: January 2017 TABLE OF CONTENTS REVISION HISTORY... 3 OVERVIEW... 5 HCM COMMON FEATURES... 6 HCM SECURITY... 6

More information

An Oracle White Paper March Oracle Database Vault for SAP

An Oracle White Paper March Oracle Database Vault for SAP An Oracle White Paper March 2010 Oracle Database Vault for SAP Introduction International laws and regulations have been introduced for the financial sector in response to the falsification of balance

More information

Oracle Linux Management with Oracle Enterprise Manager 13c O R A C L E W H I T E P A P E R J U L Y

Oracle Linux Management with Oracle Enterprise Manager 13c O R A C L E W H I T E P A P E R J U L Y Oracle Linux Management with Oracle Enterprise Manager 13c O R A C L E W H I T E P A P E R J U L Y 2 0 1 8 Introduction 2 Oracle Enterprise Manager 13c Overview 3 Managing Oracle Linux with Oracle Enterprise

More information

ORACLE ENTERPRISE MANAGER 10g ORACLE DIAGNOSTICS PACK FOR NON-ORACLE MIDDLEWARE

ORACLE ENTERPRISE MANAGER 10g ORACLE DIAGNOSTICS PACK FOR NON-ORACLE MIDDLEWARE ORACLE ENTERPRISE MANAGER 10g ORACLE DIAGNOSTICS PACK FOR NON-ORACLE MIDDLEWARE Most application performance problems surface during peak loads. Often times, these problems are time and resource intensive,

More information

ORACLE S PEOPLESOFT GENERAL LEDGER 9.2 (WITH COMBO EDITING) USING ORACLE DATABASE 11g FOR ORACLE SOLARIS (UNICODE) ON AN ORACLE S SPARC T7-2 Server

ORACLE S PEOPLESOFT GENERAL LEDGER 9.2 (WITH COMBO EDITING) USING ORACLE DATABASE 11g FOR ORACLE SOLARIS (UNICODE) ON AN ORACLE S SPARC T7-2 Server O R A C L E E N T E R P R I S E B E N C H M A R K R EV. 1.0 ORACLE S PEOPLESOFT GENERAL LEDGER 9.2 (WITH COMBO EDITING) USING ORACLE DATABASE 11g FOR ORACLE SOLARIS (UNICODE) ON AN ORACLE S SPARC T7-2

More information

WHAT S NEW IN ORACLE USER PRODUCTIVITY KIT

WHAT S NEW IN ORACLE USER PRODUCTIVITY KIT WHAT S NEW IN ORACLE USER PRODUCTIVITY KIT Version 11.1, ESP1, ESP2 May 2013 Overview Oracle User Productivity Kit v11.1 improves existing and provides powerful new features that further the value and

More information

Advanced Analytic Applications with Oracle JDeveloper and Oracle Business Intelligence Beans. An Oracle White Paper November 2004

Advanced Analytic Applications with Oracle JDeveloper and Oracle Business Intelligence Beans. An Oracle White Paper November 2004 Advanced Analytic Applications with Oracle JDeveloper and Oracle Business Intelligence Beans An Oracle White Paper November 2004 Advanced Analytic Applications with Oracle JDeveloper and Oracle Business

More information

Oracle Enterprise Performance Management Cloud

Oracle Enterprise Performance Management Cloud An Oracle White Paper January 2018 Oracle Enterprise Performance Management Cloud Extracting YTD Balances from FCCS using Data Management Disclaimer This document is provided for information purposes and

More information

An Oracle White Paper February Comprehensive Testing for Siebel With Oracle Application Testing Suite

An Oracle White Paper February Comprehensive Testing for Siebel With Oracle Application Testing Suite An Oracle White Paper February 2010 Comprehensive Testing for Siebel With Oracle Application Testing Suite Introduction Siebel provides a wide range of business-critical applications for Sales, Marketing,

More information