Expose your Intranet Portal to the Outside World in a Secured Manner (aka. A Secured Inside/Outside Portal) An Oracle White Paper

Size: px
Start display at page:

Download "Expose your Intranet Portal to the Outside World in a Secured Manner (aka. A Secured Inside/Outside Portal) An Oracle White Paper"

Transcription

1 Expose your Intranet Portal to the Outside World in a Secured Manner (aka. A Secured Inside/Outside Portal) An Oracle White Paper

2 Expose your Intranet Portal to the Outside World in a Secure Manner. INTRODUCTION With the introduction of web based technologies, the nature of business and the way employees interact with an organization has significantly changed. More and more users are accessing the applications required to do their jobs via a telecommuting paradigm. As such, the manner and number of locations from which employees use these applications has also increased. While ubiquitous access to corporate data and applications has significant benefit for employees who are remote from the corporate network, it does introduce some significant security concerns. The granting of access rights to a given employee may be valid, based on their role within the organization, however if there is no ability to constrain how/where that user may accesses the information, how is it possible to prevent the information being, either accidentally or maliciously, exposed to an inappropriate audience. For example, while it is reasonable that an employee access their personal HR data within a secure environment, such as their office, viewing the same information in a public forum, such as a cyber café, raises the possibility of having the information read by those for whom it was not intended. (Such as, simply being read over the user s shoulder or, as is unfortunately becoming more common, the use of a Trojan screen/keyboard reader). This can be as much of an issue for employees who are working in a professional capacity, within the secured network of a customer or partner organization. Consultants for example, spend significant portions of their working week out of the office at client sites. The temptation to save time by accessing corporate applications (such as timesheet reporting) is probably extremely high, yet exposes those very applications to employees of the client organization. In these scenarios, the use of a VPN is often not practical as it would not be appropriate to install the client software locally on the machine in question (especially in the case of the Cyber Café). The benefit of a Virtual private Network is that is effective places the user on the corporate network, and hence enables access to the same resources which would be available to the user internally. Hence while useful for Expose your Intranet Portal to the Outside World in a Secured Manner - Page 2

3 a home office, may exacerbate the security issue. As such, for the scenarios given, it is likely that the remote employees will use the organizations external website (public) as the entry point to access their Corporate Portal and associated web applications. Cyber-Café Home Office VPN access Public Network Remote Employees (eg. Professional Services) Corporate Network Figure 1: Ubiquitous Access to the Web introduces the possibility of compromised data. The issue for Portal administrators is therefore, how, given that access permissions are based on an Access Control List (ACL) and the user s unique identity, is it possible to grant the user access to a page, yet limit it to only to the secured intranet environment. This whitepaper will introduce an extension to the OracleAS Portal 10g (R2) security mechanisms, which allows for the definition of a nonsecured access path, and the subsequent ability to block secured requests if they originate via that access path. The default extensions shipped with OracleAS Portal 10g (R2) will cover the following three requested security extensions. Prevent the viewing of specific Portal pages, if the request originated from outside of the Corporate Network. Prevent the editing/customization of specific pages, if the user requesting the page is outside of the Corporate Network. Globally remove the ability for End Users to edit/customize any accessible any page in the system, if the edit request originated from outside of the Corporate Network. Expose your Intranet Portal to the Outside World in a Secured Manner - Page 3

4 INSIDE/OUTSIDE TOPOLOGY The approach taken to secure pages from external access is an extension to the standard OracleAS Portal 10g Inside/OutSide configuration as described in the Oracle Application Server Configuration guide (see Figure 2). In this configuration the two user communities are separated through the use of two distinct middle tier installations, each with it s own Webcache and Application server. Both Middle-tiers however are associated with the same Portal repository, allowing for the same portal and access rights to be used across both the internal and external sites. Note: it is recommended that the two sites do not share the same URL. This not only simplifies the network configuration but also enforces different CacheKeys within the Webcache. By the use of an Invalidation-Only cluster content is not shared between the various cache nodes of the cluster, hence a request that originated from with-in the secured network will only be cached on the Inside while, conversely, a page request from the external network will remain in the external cache. The separation of the application servers to service two different communities further enhances the security of the site by allowing the deployment of executable code to be limited on the publicly accessible application server. External Firewall External Users Reverse Proxy External Application Server (Portal Middle-Tier) On Unsecured Network External Webcache Invalidation-Only Cluster Internal Firewall Internal Users ORA_EXT_REQ CGI variable added to request Internal Application Server (Portal Middle-Tier) On Secure Network Internal Webcache Portal Metadata Repository Figure 2: Extended "Inside/Outside" Topology Check for ORA_EXT_REQ in Request Expose your Intranet Portal to the Outside World in a Secured Manner - Page 4

5 While the use of disparate mid-tiers allows for the separation of content for the two logical communities it does not enforce which community is which (simply that they are exposing independent content). If an individual user may access the Portal from either site it is necessary to physically differentiate the path used for the user s page request. In order to determine which community is Outside the middle-tier servicing the page request is flagged as an external service. Hence requests received via this server may be assumed to have originated from the external public network. The approach used to flag the external requests is via the addition of a Common Gateway Interface (CGI) variable to the request as it executes on the server that has be designated as outside. As the page request is forwarded to the OracleAS Portal 10g repository for verification of access privileges, the addition of the CGI variable (ORA_EXT_REQ) to the request allows the security authorization code to differentiate between the origins of a page request. That is, a request from an internal server would not carry the ORA_EXT_REQ variable. In order to utilize the path information to further secure pages, an Access Control List (ACL) modifier package is installed into the Portal Repository to check for the existence of the CGI variable before performing the standard permissions checks. This ACL modifier package will be discussed later in this paper. Note: The ORA_EXT_REQ variable has no specific value to control the ability to access a page externally. The modifier package simply checks for the existence of the variable, not the value contained within it. As such, if the external server was compromised and a malicious user was able to set this value, they would succeed only in decreasing the amount of content available to them. Configuration Steps The high level steps for configuring the prescribed Inside/Outside topology are as follows; 1. Install the Product Metadata Repository on the internal Database server (either in a custom database or using the Seed Meta-Data Repository which is installed with the infrastructure install) 2. Install Portal & Wireless Mid-tier on the external mid-tier server, associate this installation with the Metadata repository configured in step 1, however DO NOT configure the portal during this installation process (Note: uncheck to configure portal check-box) 3. Setup an Invalidation-only Web Cache Cluster between the two mid-tiers configured above. (Refer to the Oracle Application Server Expose your Intranet Portal to the Outside World in a Secured Manner - Page 5

6 Web Cache Administrator's Guide for steps on Configuring Administration and Invalidation-Only Clusters) 4. Using the Advance Server Properties page from within the Oracle Application Server Console edit the Oracle HTTP server and mod_plsql configuration on the External mid-tier to flag this server as unsecured (ie that which services the external requests) Farm > Application Server Instance > HTTP_Server > Admininstration > Advanced Server Properties a) Edit the httpd.conf configuration file. Add a line as follows in the main section: SetEnv ORA_EXT_REQ (this is the environment variable which denotes an externally initiated request). b) Edit the dads.conf mod_plsql configuration file, add a line under the configuration entry for the Portal DAD as follows: PlsqlCGIEnvironmentList ORA_EXT_REQ c) Restart the HTTP Server: 5. Register both the Internal and external Portal URLs as separate Partner Applications in the Oracle SSO environment 6. Setup Portal to Send Invalidation Requests to Internal Middle Tier WebCache invalidation port. Note: These steps are described in detail within the Configuring a Dedicated Intranet and Extranet for OracleAS Portal chapter of the Oracle Application Server Enterprise Deployment Guide. Please refer to this document for further information on how to configure the Enterprise Inside/Outside topology. Authorization Modification In the basic installation of OracleAS Portal 10g, the determination of a user s ability to view or edit a page, is based on the definition of an ACL policy, which references the page and the user (and/or any roles to which they belong). In other words the user s privileges are defined by her as a named individual identity, rather than based on a specific business rule (such as from whence the request originated). To allow for extensions to this security model the OracleAS Portal 10g authorization routines have been extended by the introduction of an Authorization Modifier Package. This package is executed prior to the standard ACL check, and enables additional rules to be evaluated before interrogating the ACL itself. If the Authorization Modifier succeeds (returns true) then the authorization check falls through to the default ACL based mechanism in order to determine if the user has the Expose your Intranet Portal to the Outside World in a Secured Manner - Page 6

7 appropriate access rights. Conversely, if the Authorization Modifier denies access (returns false) the ACL is not even interrogated, and the behavior is to act as if the user did not have appropriate privileges for the operation, even if the ACL would have allowed it. By default, the installed Authorization Modification Package always returns true, and hence the functionality is effectively disabled. Thus the determination of access privileges is based solely on the evaluation of the security ACL s. To switch on the Authorization modifier it is necessary to replace the default package body with one that implements the desired business rule. Secure Network Aware Authorization Modifiers OracleAS Portal 10g is shipped with three predefined Modifier packages which allow for the implementation of a Secure Network Aware Portal environment. That is, one which is able to implement security policies based not only on an ACL, but also on the origin of the Portal page request. Script File cfgamyes.pkb cfgampev.pkb cfgamno.pkb Description The default ConFiGuration Authorization Modifier disables ALL page Editing or Customization functionality for requests which originate outside of the secured network The ConFiGuration Authorization Modifier for Page Edit and View, allows for the securing of individual pages outside of the Secured Network. That is, the ability to prevent the viewing or editing of specific pages when the request originated from outside the secure network environment. Returns the Authorization modifier to the default disabled state. Table 1: Authorization modifiers supplied The Modifier packages may be found in the $ORACLE_HOME/plsql/admin/wwc directory with the release of Oracle Application Server Portal. To implement the desired function; 1. Connect via SQL*Plus to Database containing the OracleAS Portal 10g Metadata Repository. 2. Login as the Portal schema 3. Execute the appropriate package body script file to over-write the current Authorization Modifier installed. Expose your Intranet Portal to the Outside World in a Secured Manner - Page 7

8 Default Authorization Modifier This implementation of the Authorization Modifier package uses the existence of the ORA_EXT_REQ CGI environment variable described above to recognize that the request has been received on a server that has been designated as publicly accessible, and hence should be considered outside of the Secure Network environment. Once compiled into the Authorization packages, any request from outside of the network which involves an Edit request is automatically disabled. That is, all customize and Edit links are removed from the page and direct edit URL references are disallowed. The effect of the default modifier can be seen in Figure 3 below. A Local Network request with Edit Privileges Allowed An External Network request with all Edit Privileges Blocked Ability to edit page is globally blocked for ALL users. Both Edit & Customize removed from the page. Figure 3: The effect of applying the Default Modifier on a user s ability to Edit/Customize the portal externally. Page View and Edit Authorization Modifier Securing Specific Pages The more specific Authorization Modifier (cfgampev) also uses the CGI variable to determine an external request. It however uses it in conjunction with defined page meta-data, in the form of a custom page attribute, to localize the desired inside/outside security to a subset of pages within the portal. Hence the ability to have externally available view and/or edit privileges on a specific page is determined on whether one or both named attributes are defined in the page in question. Expose your Intranet Portal to the Outside World in a Secured Manner - Page 8

9 Preventing External Viewing of a Specific Page The ability to view a page externally is determined by the 'isviewrestricted' named custom attribute. Once defined as part of the page description (through the use of a custom page template - see below) the setting of this attribute will determine dynamically if the page is to be viewable, or not. That is, when set to 'On' external viewing of the page is prevented, while a value of 'Off' (the default) indicates it is to be available externally. From the perspective of the end user, the activation of this rule has the effect of removing any links which reference the page as well as preventing any direct URLs to it (such as via a browser bookmark). An example of the effect of the View Restricted modifier may be seen in Figure 4. A Local Network request to view a secured page An External Network request by the same user A Network Secured Page is NOT exposed, if the request originates from outside of the Local Network! Figure 4: The effect of the "ViewRestricted" modifier is to remove evidence of the secured page from external requests Preventing External Edits and Customization for a Specific Page In a similar manner, the use of another named attribute, 'iseditrestricted' will dictate whether a specific page may be edited from outside of the secured network. Note: This is different to the Default Modifier which globally turns off the ability to perform any edit function on any page within the Portal. When the value of this attribute is set to On the ability to edit/customize the page is revoked, while setting it to 'Off' indicates edits from outside are to be allowed. As can be seen from figure 5, the effect of setting this attribute is to not only remove the page level Expose your Intranet Portal to the Outside World in a Secured Manner - Page 9

10 edit links, but also revoke the edit/customize capability of the Portlets embedded within the page. A Local Network request to view a secured page An External Network request by the same user The ability to edit a specific Network Secured Page may be revoked if the page request originated from outside of the Local Network Figure 5: The effect of the "EditRestricted" modifier is to remove the ability to Edit/Customize the secured page externally Defining Required Page Attributes for use with Authorization Modifiers While the attributes described above are not currently part of the standard page meta-data, the extensible page model allows us to add them in the form of Custom Attributes to our page definition. By the creation of a custom page type to be used as the basis of the inside/outside secureable pages it is a simple process to allow a page designer to define declaratively whether the page is to be internally secured or accessable both from with-in and with-out the secured network. The following section documents the steps required to create the appropriate page type used to secure a page via the Authorization Modifier functions decribed above. 1. From within the Portal Navigator, drill into the Shared Objects node to define both the custom Attribute and Page types. It is recommended that these be defined as Shared Objects rather than scoped to a specific Page Group, as it allows for their reuse across multiple Page Groups. Expose your Intranet Portal to the Outside World in a Secured Manner - Page 10

11 Figure 6 : Portal Navigator "Shared Objects" node 2. Selecting the Attribute link, define a custom attribute with the specific name of either isviewrestricted or iseditrestricted depending on the functionality desired. Take special care to match the case structure of the name, as the Authorization modifier rule is CASE sensitive. Set the data-type of the attribute to BOOLEAN. Note: In order to simplify the use of custom meta-data the Oracle Portal Create Attribute page no longer allows for the separate definition of the attribute s name. Instead this is generated from the user supplied display name (truncating any spaces). As such, it is easiest to create the attribute with an initial display name matching the required attribute name (in this case isviewrestricted ) thus creating an attribute of the same name. Having created the initial attribute definition, edit the Display name to reflect the function of the attribute. (See figure 7) Figure 7 : Custom Attribute Definition Expose your Intranet Portal to the Outside World in a Secured Manner - Page 11

12 3. Once the required custom attribute is defined it needs to be made part of the meta-data of the page. a. Create a Custom Page Type to define a Network Securable Page based on the Standard Base Page type. Note: As with the creation of the Custom Attribute Oracle Portal initially generates the Type name from the user supplied display name (truncating any spaces). As the physical type name is not used by the Authorization modifier, it should be set to something that is meaningful, as it will be exposed in the Page Design UI. b. Edit the new Page Type and define the attributes associated with it by selecting the Attributes tab. c. Within the Shuttle Picker highlight the new custom attributes and move them to the right hand side. Click the Apply button, which will associate the attributes with the new page type and expose their Properties in the Page Type Attributes tab. d. Set the default value of the attribute to either ON or OFF depending on your security requirements. e. Check the Required Check Box in order for the Attribute (and display name) to be exposed in the Page Type and subsequently Page Designer user interfaces. Figure 8: Define Custom Page type on which to build "Network Securable" pages Expose your Intranet Portal to the Outside World in a Secured Manner - Page 12

13 Figure 9: Associate the network security attributes with the custom Page Type. 4. Configure the Page Group to expose the new Page Type. Note: Given the Network Securable page is based on the Standard Base type you may wish to remove the standard type and expose the new secured version in it s place Figure 10: Defining the Page Types to be available within page group Expose your Intranet Portal to the Outside World in a Secured Manner - Page 13

14 Defining a Network Secured page Having defined the Network Secured page type and associated it with the page group, it is a simple task for the Page Designer to select the appropriate page type and check which network security rule are to be enforced. That is, whether the page they are designing should be constrained to the Local network, or be exposed to a less secure environment. Figure 11 : Page designers can now declaratively define if their page should be Network Securable Restrictions on Authorization Modifiers The techniques described in this white paper rely on the fact that the page request in question would, under normal circumstances, be defined by a security policy, and as such; access control would be applied. Consequently there are a number of caveats that should be taken into account for this functionality to perform as expected. 1. The Page in question must be a Secured Page and may not be defined as a PUBLIC page. Based on the fact that public pages are available to all users, regardless of whether they have authenticated or not, they are not scrutinized for access control, and hence the authorization code, and subsequent modifier, is not called prior to displaying the page. Expose your Intranet Portal to the Outside World in a Secured Manner - Page 14

15 Therefore it is a minimum requirement that privilege be granted to the AUTHENTICATED_USERS group for the page. 2. User cannot be defined as a SITE Owner. Site Owners are assumed to have MANAGE privilege over any page in the Site owned by them. As such, they effectively have super-user privileges and there is no requirement to perform an authorization check. In this case the authorization code is again not called prior to displaying the page. 3. User should not have Global Edit Privileges As with the user being defined as the SITE Owner, the granting of the Global EDIT ANY PAGE privilege indicates that the user in question should have the right to edit any page in the system, regardless of the ACL s defined. As such, the page level authorization is ignored and the Authorization Modifier not executed. 4. Page Security Should be defined at the Page Level In many cases it is more convenient to define the access control privilege at the Page Group Level and allow the individual page to inherit the privilege. In the case of the Authorization Modifier this would then restrict all pages in the Page group rather than only those pages requiring the external restriction. Conclusion As the web makes ubiquitous access to corporate data possible and as more employees take advantage of the flexibility of tele-commuting ; the onus is on systems administrators to secure their environment, such that information is not inadvertently exposed to those for whom it was not intended. Increasingly, it has become necessary to treat as possibly hostile, any request that has not originated from within the physical confines of the local network. As such, these external requests should be limited to the minimum possible functionality. This white paper has introduced the concept and techniques for implementing a secured Inside/Outside topology for OracleAS Portal 10g which allows a users access privileges to be determined not only by their identity but also by the path used to access the Portal. Expose your Intranet Portal to the Outside World in a Secured Manner - Page 15

16 Appendix Object level functions allowed by the default Authorization Modifier. Object Privilege Allowed? ADCALEND ADCHART ADFORM ADFORMPR ANY_APPLICATION ANY_ITEM ANY_LOG ANY_PAGE ANY_PORTLET ANY_SCHEMA ANY_SITE ANY_STYLE APPLICATION AREPORT CHART DATACELL DATAPTL DOCUMENT DRIVER DYNAMIC FOP FOT HIERARCH IMGCHART ITEM LINK LOV MDF ACCESS Expose your Intranet Portal to the Outside World in a Secured Manner - Page 16

17 MDFORM MENU PAGE PORTLET PORTLET_NON_LOCAL QBEFORM REPORT RWCAL RWCPC RWPRN RWREP RWSVR SCHEMA SITE UIFORM URLPTL XMLPTL ACCESS ACCESS Expose your Intranet Portal to the Outside World in a Secured Manner - Page 17

18 Expose your Intranet Portal to the Outside World in a Secure Manner Author: Barry Hiern Contributing Authors: Paul Encarnación, Sunil Marya, Peter Lubbers Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A. Worldwide Inquiries: Phone: Fax: Copyright 2005, 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.

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

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

Creating Custom Project Administrator Role to Review Project Performance and Analyze KPI Categories

Creating Custom Project Administrator Role to Review Project Performance and Analyze KPI Categories Creating Custom Project Administrator Role to Review Project Performance and Analyze KPI Categories Worked Example ORACLE PPM CLOUD SERVICES SOLUTION OVERVIEW MAY 2018 Disclaimer The following 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

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

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

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

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

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

Oracle Service Registry - Oracle Enterprise Gateway Integration Guide

Oracle Service Registry - Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 Oracle Service Registry - Oracle Enterprise Gateway Integration Guide 1 / 19 Disclaimer The following is intended to outline our general product direction. It is intended

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

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

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

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

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

Oracle Best Practices for Managing Fusion Application: Discovery of Fusion Instance in Enterprise Manager Cloud Control 12c

Oracle Best Practices for Managing Fusion Application: Discovery of Fusion Instance in Enterprise Manager Cloud Control 12c An Oracle White Paper July, 2014 Oracle Best Practices for Managing Fusion Application: Discovery of Fusion Instance in Enterprise Manager Cloud Control 12c Executive Overview... 2 Applicable versions

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

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

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

Tutorial on How to Publish an OCI Image Listing

Tutorial on How to Publish an OCI Image Listing Tutorial on How to Publish an OCI Image Listing Publish an OCI Image Listing F13637-01 JANUARY 2019 DISCLAIMER The following is intended to outline our general product direction. It is intended for information

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

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

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

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

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

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

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

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

PeopleSoft Applications Portal and WorkCenter Pages

PeopleSoft Applications Portal and WorkCenter Pages An Oracle White Paper April, 2011 PeopleSoft Applications Portal and WorkCenter Pages Creating a Compelling User Experience Introduction... 3 Creating a Better User Experience... 4 User Experience Possibilities...

More information

Oracle Database Vault

Oracle Database Vault Oracle Database Vault Best Practices ORACLE WHITE PAPER MAY 2015 Table of Contents Executive Overview 2 Installation 3 Pre-Installation Notes 3 Separation of Duty 3 Separation of Duty Matrix 4 Oracle Database

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

JD Edwards EnterpriseOne Licensing

JD Edwards EnterpriseOne Licensing JD Edwards EnterpriseOne Licensing Disabling Client Licensing for Various Tools Releases 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 5 Disclaimer The following is intended to outline our general

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

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

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

WebCenter Portal Task Flow Customization in 12c O R A C L E W H I T E P A P E R J U N E

WebCenter Portal Task Flow Customization in 12c O R A C L E W H I T E P A P E R J U N E WebCenter Portal Task Flow Customization in 12c O R A C L E W H I T E P A P E R J U N E 2 0 1 7 Disclaimer The following is intended to outline our general product direction. It is intended for information

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

Establishing secure connections between Oracle Ravello and Oracle Database Cloud O R A C L E W H I T E P A P E R N O V E M E B E R

Establishing secure connections between Oracle Ravello and Oracle Database Cloud O R A C L E W H I T E P A P E R N O V E M E B E R Establishing secure connections between Oracle Ravello and Oracle Database Cloud O R A C L E W H I T E P A P E R N O V E M E B E R 2 0 1 7 Table of Contents APPLICATION ARCHITECTURE OVERVIEW 2 CONNECTING

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 Enterprise Data Quality New Features Overview

Oracle Enterprise Data Quality New Features Overview Oracle Enterprise Data Quality 12.2.1.1 New Features Overview Integrated Profiling, New Data Services, New Processors O R A C L E W H I T E P A P E R J U L Y 2 0 1 6 Table of Contents Executive Overview

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

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 Cloud Applications. Oracle Transactional Business Intelligence BI Catalog Folder Management. Release 11+

Oracle Cloud Applications. Oracle Transactional Business Intelligence BI Catalog Folder Management. Release 11+ Oracle Cloud Applications Oracle Transactional Business Intelligence BI Catalog Folder Management Release 11+ ORACLE WHITE PAPER November 2017 ORACLE WHITE PAPER November 2017 Table of Contents Introduction

More information

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Transfer Payments User Manual. Part No. E

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Transfer Payments User Manual. Part No. E Oracle FLEXCUBE Direct Banking Release 12.0.0 Dashboard Widgets Transfer Payments User Manual Part No. E52305-01 Dashboard Widgets User Manual Table of Contents 1. Transaction Host Integration Matrix...

More information

Bastion Hosts. Protected Access for Virtual Cloud Networks O R A C L E W H I T E P A P E R F E B R U A R Y

Bastion Hosts. Protected Access for Virtual Cloud Networks O R A C L E W H I T E P A P E R F E B R U A R Y Bastion Hosts Protected Access for Virtual Cloud Networks O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 8 Disclaimer The following is intended to outline our general product direction. It is intended

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 Configurator

Oracle Fusion Configurator Oracle Fusion Configurator Configurator Modeling Walk Through 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 Table of Contents Introduction 1 Assumptions 1 Product Information Management Setup 2 Item

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 Forms Services Oracle Traffic Director Configuration

Oracle Forms Services Oracle Traffic Director Configuration An Oracle White Paper January 2014 Oracle Forms Services Oracle Traffic Director Configuration Introduction... 1 What is Oracle Traffic Director... 2 Requirements... 3 WebLogic Server... 3 Oracle Forms

More information

PeopleSoft Fluid Navigation Standards

PeopleSoft Fluid Navigation Standards PeopleSoft Fluid Navigation Standards Fluid User Experience ORACLE WHITE PAPER OCTOBER 2015 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Oracle Cloud Infrastructure Virtual Cloud Network Overview and Deployment Guide ORACLE WHITEPAPER JANUARY 2018 VERSION 1.0

Oracle Cloud Infrastructure Virtual Cloud Network Overview and Deployment Guide ORACLE WHITEPAPER JANUARY 2018 VERSION 1.0 Oracle Cloud Infrastructure Virtual Cloud Network Overview and Deployment Guide ORACLE WHITEPAPER JANUARY 2018 VERSION 1.0 Table of Contents Purpose of this Whitepaper 1 Scope & Assumptions 1 Virtual Cloud

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

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 VM 3: IMPLEMENTING ORACLE VM DR USING SITE GUARD O R A C L E W H I T E P A P E R S E P T E M B E R S N

Oracle VM 3: IMPLEMENTING ORACLE VM DR USING SITE GUARD O R A C L E W H I T E P A P E R S E P T E M B E R S N Oracle VM 3: IMPLEMENTING ORACLE VM DR USING SITE GUARD O R A C L E W H I T E P A P E R S E P T E M B E R 2 0 1 8 S N 2 1 3 0 5 Table of Contents Introduction 1 Overview 2 Understanding the Solution 2

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 DIVArchive Storage Plan Manager

Oracle DIVArchive Storage Plan Manager Oracle DIVArchive Storage Plan Manager Feature Description ORACLE TECHNICAL WHITE PAPER UPDATED MAY 2015 Introduction: What Is a Storage Plan? Storage plans are policies managing the lifecycle of objects

More information

Generate Invoice and Revenue for Labor Transactions Based on Rates Defined for Project and Task

Generate Invoice and Revenue for Labor Transactions Based on Rates Defined for Project and Task Generate Invoice and Revenue for Labor Transactions Based on Rates Defined for Project and Task O R A C L E P P M C L O U D S E R V I C E S S O L U T I O N O V E R V I E W D E C E M B E R 2017 Disclaimer

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

Correction Documents for Poland

Correction Documents for Poland ERP CLOUD Correction Documents for Poland Oracle Financials for EMEA Table of Contents Purpose of the Document... 2 Setup... 3 Security Privilege... 3 Receivables Transaction Sources... 4 Receivables Transaction

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

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

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Customer Services User Manual. Part No. E

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Customer Services User Manual. Part No. E Oracle FLEXCUBE Direct Banking Release 12.0.0 Dashboard Widgets Customer Services User Manual Part No. E52305-01 Dashboard Widgets User Manual Table of Contents 1. Transaction Host Integration Matrix...

More information

An Oracle White Paper March Introduction to Groovy Support in JDeveloper and Oracle ADF 11g

An Oracle White Paper March Introduction to Groovy Support in JDeveloper and Oracle ADF 11g An Oracle White Paper March 2009 Introduction to Groovy Support in JDeveloper and Oracle ADF 11g Oracle White Paper Introduction to Groovy support in JDeveloper and Oracle ADF 11g Introduction... 2 Introduction

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

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

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

Oracle Access Manager 10g - Oracle Enterprise Gateway Integration Guide

Oracle Access Manager 10g - Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 Oracle Access Manager 10g - Oracle Enterprise Gateway Integration Guide 1/26 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Deploy VPN IPSec Tunnels on Oracle Cloud Infrastructure. White Paper September 2017 Version 1.0

Deploy VPN IPSec Tunnels on Oracle Cloud Infrastructure. White Paper September 2017 Version 1.0 Deploy VPN IPSec Tunnels on Oracle Cloud Infrastructure White Paper September 2017 Version 1.0 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Siebel CRM Applications on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017

Siebel CRM Applications on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017 Siebel CRM Applications on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017 Oracle Ravello is an overlay cloud that enables enterprises to run their VMware and KVM applications with data-center-like

More information

Superior Product Variants Software for Multi-Attribute Product Companies. An Oracle White Paper April 2004

Superior Product Variants Software for Multi-Attribute Product Companies. An Oracle White Paper April 2004 Superior Product Variants Software for Multi-Attribute Product Companies An Oracle White Paper April 2004 Superior Product Variants Software for Multi- Attribute Product Companies Streamlining Management

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

Using the Oracle Business Intelligence Publisher Memory Guard Features. August 2013

Using the Oracle Business Intelligence Publisher Memory Guard Features. August 2013 Using the Oracle Business Intelligence Publisher Memory Guard Features August 2013 Contents What Are the Memory Guard Features?... 3 Specify a maximum data sized allowed for online processing... 3 Specify

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

An Oracle White Paper July Oracle WebCenter Portal: Copying a Runtime-Created Skin to a Portlet Producer

An Oracle White Paper July Oracle WebCenter Portal: Copying a Runtime-Created Skin to a Portlet Producer An Oracle White Paper July 2011 Oracle WebCenter Portal: Copying a Runtime-Created Skin to a Portlet Producer Introduction This white paper describes a method for copying runtime-created skins from a WebCenter

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

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

How to Monitor Oracle Private Cloud Appliance 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

How to Monitor Oracle Private Cloud Appliance 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 How to Monitor Oracle Private Cloud Appliance 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 Configuration of Oracle Enterprise Manager 13c to discover

More information

Establishing secure connectivity between Oracle Ravello and Oracle Cloud Infrastructure Database Cloud ORACLE WHITE PAPER DECEMBER 2017

Establishing secure connectivity between Oracle Ravello and Oracle Cloud Infrastructure Database Cloud ORACLE WHITE PAPER DECEMBER 2017 Establishing secure connectivity between Oracle Ravello and Oracle Cloud Infrastructure Database Cloud ORACLE WHITE PAPER DECEMBER 2017 Table of Contents APPLICATION ARCHITECTURE OVERVIEW 2 CONNECTING

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

GUIDE TO SERVICES. For G-Log Customers and Partners

GUIDE TO SERVICES. For G-Log Customers and Partners GUIDE TO SERVICES For G-Log Customers and Partners Welcome. We re proud to have you as our new customers and partners. We look forward to serving you by continuing to support your G-Log investments. For

More information

Oracle Clusterware 18c Technical Overview O R A C L E W H I T E P A P E R F E B R U A R Y

Oracle Clusterware 18c Technical Overview O R A C L E W H I T E P A P E R F E B R U A R Y Oracle Clusterware 18c Technical Overview O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 8 Table of Contents Introduction 1 Cluster Domains 3 Conversions 3 Oracle ACFS Remote Service 5 Single Network

More information

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

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

More information

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

Handling Memory Ordering in Multithreaded Applications with Oracle Solaris Studio 12 Update 2: Part 2, Memory Barriers and Memory Fences

Handling Memory Ordering in Multithreaded Applications with Oracle Solaris Studio 12 Update 2: Part 2, Memory Barriers and Memory Fences An Oracle White Paper September 2010 Handling Memory Ordering in Multithreaded Applications with Oracle Solaris Studio 12 Update 2: Part 2, Memory Introduction... 1 What Is Memory Ordering?... 2 More About

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 Warehouse Builder 10g Release 2 What is an Expert?

Oracle Warehouse Builder 10g Release 2 What is an Expert? Oracle Warehouse Builder 10g Release 2 What is an Expert? May 2006 Note: This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality, and should

More information

An Oracle White Paper May Example Web Listener Deployment for Oracle Application Express

An Oracle White Paper May Example Web Listener Deployment for Oracle Application Express An Oracle White Paper May 2014 Example Web Listener Deployment for Oracle Application Express Disclaimer The following is intended to outline our general product direction. It is intended for information

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

Oracle Fusion Middleware

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

More information

Real Application Security Administration

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

More information

Oracle Virtual Directory 11g Oracle Enterprise Gateway Integration Guide

Oracle Virtual Directory 11g Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 Oracle Virtual Directory 11g Oracle Enterprise Gateway Integration Guide 1 / 25 Disclaimer The following is intended to outline our general product direction. It is intended

More information

JD EDWARDS ENTERPRISEONE USER EXPERIENCE

JD EDWARDS ENTERPRISEONE USER EXPERIENCE JD EDWARDS ENTERPRISEONE USER EXPERIENCE KEY FEATURES AND BENEFITS Highly interactive interface that leverages Dynamic HTML provides immediate feedback to the user. EnterpriseOne Pages provide a single

More information

ORACLE FUSION MIDDLEWARE MAPVIEWER

ORACLE FUSION MIDDLEWARE MAPVIEWER ORACLE FUSION MIDDLEWARE MAPVIEWER 10.1.3.3 MAPVIEWER KEY FEATURES Component of Fusion Middleware Integration with Oracle Spatial, Oracle Locator Support for two-dimensional vector geometries stored in

More information

RAC Database on Oracle Ravello Cloud Service O R A C L E W H I T E P A P E R A U G U S T 2017

RAC Database on Oracle Ravello Cloud Service O R A C L E W H I T E P A P E R A U G U S T 2017 RAC Database on Oracle Ravello Cloud Service O R A C L E W H I T E P A P E R A U G U S T 2017 Oracle Ravello is an overlay cloud that enables enterprises to run their VMware and KVM applications with data-center-like

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

Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices. An Oracle White Paper April, 2012

Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices. An Oracle White Paper April, 2012 Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices An Oracle White Paper April, 2012 Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices INTRODUCTION

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

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