Oracle Spatial 10g. An Oracle White Paper August 2005
|
|
|
- Arron Flynn
- 9 years ago
- Views:
Transcription
1 Oracle Spatial 10g An Oracle White Paper August 2005
2 Oracle Spatial 10g INTRODUCTION Oracle Spatial, an option for Oracle Database 10g Enterprise Edition, includes advanced spatial capabilities to support GIS applications, location-based services, and enterprise spatial information systems. Oracle Spatial extends the core location features included in every Oracle database with Oracle Locator. 1 Its advanced data manipulation and spatial analysis features include buffer generation, spatial aggregates, area and length calculations, and linear referencing. The first release of Oracle Spatial 10g introduced a GeoRaster datatype to store and manage image and gridded raster data and metadata, network and topology data models, geocoding and routing engines, and spatial analysis and mining functions. These significant new capabilities address business-critical requirements of the public sector, defense, logistics, energy exploration, business geographics, and life sciences domains. The second release of Oracle Spatial 10g introduces elocation Quick Start, a set of Java APIs for quick and easy deployment of mapping, geocoding, and routing services, and enhances features introduced in the first release. Combined with the performance, scalability, and security of Oracle Database 10g, Oracle Spatial 10g is the most advanced spatial database platform available for enterprise class deployments. In general, this white paper describes those features included only with Oracle Spatial, but does not cover Oracle Locator features in depth. 2 SPATIAL FUNCTIONS Oracle Spatial provides functions that perform calculations on geometries, such as area of a polygon and length or perimeter of a 1 Oracle Locator, a feature of Oracle Database 10g (Standard Edition, Standard Edition One, and Enterprise Edition), provides core spatial features for business applications and partner-based GIS. Features include vector data storage and management, indexing, spatial relationship analysis, coordinate systems support (including support for the EPSG model), and more. 2 For descriptions of features in Oracle Locator, please refer to Oracle Locator: Location- Enabling Every Oracle Database - Technical White Paper and Oracle Spatial Option and Oracle Locator - Data Sheet. For complete, detailed listings of Oracle Locator and Oracle Spatial features, please refer to Appendix B of the Oracle Spatial User s Guide and Reference 10g Release 2(10.2). Oracle Spatial 10g Page 2
3 geometry. These functions can be used, for example, to determine the total area of all counties around Passaic County, length of an interstate highway, or length of a state border. Oracle Spatial functions can also generate new geometries such as buffers, unions, intersections, and more. They can be used, for example, to define sales regions by creating a 5 mile buffer around all sales offices, find the geometry representing the union of two sales regions, or find the intersection between two sales regions. WHOLE EARTH GEOMETRY MODEL FOR GEODETIC COORDINATE SUPPORT A whole Earth geometry model takes into account the curvature of the Earth s surface when performing calculations on geodetic data. Thus, Oracle Spatial functions return accurate lengths and areas for both projected and geodetic data. Oracle supports over 30 of the most commonly used distance and area units, e.g. foot/square foot, meter/square meter, kilometer/square kilometer, and so on. LINEAR REFERENCING SUPPORT Oracle Spatial supports the storage of "measurement" information associated with a linear geometry. This allows many attributes or events to be associated with a specified segment on a linear geometry. Attributes or events are stored in tables separately from the geometry, and the geometry does not have to be duplicated in the attribute tables. Linear referencing is often used by departments of transportation, to model roads or railroads and their attributes; utilities, to model oil or gas pipes and their attributes; and telecommunications providers. Functions to manipulate linear referenced geometries are also included, e.g. clipping a piece of a linear feature, concatenating a linear feature, and splitting a linear feature. SPATIAL AGGREGATES SQL has long had aggregate functions, which are used to aggregate the results of a SQL query. Spatial aggregate functions operate on a set of geometries rather than just one or two geometries. An aggregate function performs a specified aggregate operation on a set of input geometries, and returns a single geometry object. For example, the following statement returns the state boundary of Tennessee generated from all of the counties in Tennessee: select sdo_aggr_union(sdoaggrtype(geom,0.5)) state from geod_counties where state_abrv='tn'; Oracle Spatial 10g Page 3
4 Other supported aggregate functions include union, centroid, and convex hull; users can also define other aggregate functions. The use of spatial aggregates improves performance and simplifies coding. GEORASTER SUPPORT (ENHANCED FOR 10G RELEASE 2) Oracle Spatial includes a data type that natively manages georeferenced raster imagery (satellite imagery, remotely sensed data, gridded data) in Oracle Database 10g. The GeoRaster feature of Oracle Spatial provides georeferencing of imagery; XML schema for metadata management; and basic operations like pyramiding, tiling, and interleaving. Applications in environmental management, defense/homeland security, energy exploration, and satellite image portals will all benefit from this powerful functionality. New in 10g Release 2: GeoRaster now supports industry standard compression techniques for raster (image and cell-based, or "grid") data, including the JPEG baseline (lossy) and DEFLATE (lossless) standards. Other proprietary compression techniques are supported through third party plugins. All GeoRaster functions that can be performed on uncompressed GeoRaster objects can be performed on compressed objects. Remote sensing imagery results in very large data sets, growing at the rate of a terabyte or more per day. The capability to store and manage these images in compressed form is a key requirement for users and DBAs alike. Customers save money on storage costs when image sizes are reduced by up to 80 percent. This is essential for defense/security, agricultural, and environmental monitoring applications. For more information about GeoRaster, please refer to separate white papers at NETWORK DATA MODEL (ENHANCED FOR 10G RELEASE 2) A data model is provided to store network (graph) structure in Oracle Database 10g. It explicitly stores and maintains connectivity of link-node networks and provides network analysis capability such as shortest path and connectivity analysis. Applications requiring network solutions include transportation, transit, utilities and life sciences (biochemical pathway analysis). New in 10g Release 2: The network data model now includes: a PL/SQL interface for creating, editing, and analyzing network data; a data modeling enhancement for specifying bidirected links; a function to find the maximum allowable flow from a source to a sink node; the ability to create and apply network constraints; and the ability to specify costs by a PL/SQL function. Oracle Spatial 10g Page 4
5 For more information about Oracle Spatial network data model, please refer to separate white papers at TOPOLOGY DATA MODEL (ENHANCED FOR 10G RELEASE 2) Oracle Spatial includes a data model and schema that persistently store topology in the Oracle Database. This is useful when there is a high degree of feature editing and a strong requirement for data integrity across maps and map layers. Another benefit is that topology-based queries typically perform faster for queries involving relationships such as adjacency, connectivity, and containment. Land management (cadastral) systems and spatial data providers benefit from these capabilities. New in 10g Release 2: Feature level spatial transactions against persistent topology in the database are now supported. In the previous release, multiple operations were required to insert or update all of the node, edge, and face elements of a feature; now, a feature insert or update occurs as a single operation. This dramatically simplifies the process of updating and maintaining topology datasets, and reduces the code required. The process for exporting a topology and importing it into a target database has been simplified. New operators, functions, and subprograms make the topology data model even more flexible and easy to use. SPATIAL ANALYTIC FUNCTIONS (INTRODUCED IN 10G RELEASE 1) Server-based spatial analysis capabilities include classification, binning, association, and spatial correlation essential for business intelligence applications. For more information about spatial analytic functions, please refer to a separate white paper at GEOCODER (ENHANCED FOR 10G RELEASE 2) Geocoding is the process of associating geographic references, such as addresses and postal codes, with location coordinates (longitude and latitude). With the Oracle Spatial option of Oracle Database 10g, a fully functional geocoding engine is provided. It provides international address standardization, geocoding and POI matching by querying geocoded data stored in Oracle Database. Its unique unparsed address support adds great flexibility and convenience to customer applications. A PL/SQL API for geocoding is provided. New in 10g Release 2: The geocoding engine now supports reverse geocoding, batch geocoding, and other new geocoding subprograms. Oracle Spatial 10g Page 5
6 ROUTING ENGINE (ENHANCED FOR 10G RELEASE 2) A scalable routing engine provides driving distances, times, and directions between addresses (or locations that have been geocoded in advance). It is provided as a Java client library that can be easily deployed in either Oracle Application Server or standalone OC4J environments. Other features include: preference for either fastest or shortest routes, returning summary or detailed driving directions, and returning the time and distance along a street network from a single location to multiple destinations. New in 10g Release 2: The Spatial routing engine has now been extended to provide driving distances, times, and directions between addresses for over a dozen Western European countries, including Germany, United Kingdom, France, and more. These enhancements enable logistics, transportation, and location-based services applications to build driving directions services for these countries. elocation QUICK START (NEW WITH 10G RELEASE 2) Oracle Spatial 10g Release 2 introduces elocation Quick Start. Location service Java and XML APIs enable application developers to quickly and easily deploy mapping, geocoding, and routing services right "out of the box", from data stored in Oracle Spatial. The APIs ship with sample HTML interfaces to jump-start the creation of driving directions, mapping, and geocoding applications. The Oracle Spatial geocoding and routing APIs may be used by Oracle Application Server MapViewer, many third party mapping tools, or user-developed applications. Sample data is available online. Data sets in the format supporting Oracle Spatial 10g are also available from leading data providers. Visit for more information. OPEN STANDARDS Oracle consistently works to help shape, drive, implement and support the latest open standards in the spatial and location services areas. Oracle is a Principal Member of the Open Geospatial Consortium (OGC) and participates actively on the Technical Committee. Oracle Spatial 10g Release 1 ( ) complies with the OpenGIS Simple Features Specification for SQL, Revision 1.1, Types and Functions Alternative. Oracle is also committed to supporting the new OGC Geographic Markup Language (GML) as well as Open Location Service interfaces. The object-relational model used for geometry storage by Oracle Spatial also conforms to the specifications associated with SQL92 representation of points, lines, and polygons. Oracle Spatial 10g Page 6
7 SUPPORT FROM LEADING GIS AND LOCATION SERVICES VENDORS Oracle Spatial is directly integrated with the leading GIS and location services technology vendors. The breadth of partner support provides developers with their choice of best of breed tools to meet their requirements. With Oracle Spatial 10g and partner tools, developers can rapidly deploy scalable, secure enterprise GIS and location service solutions. A list of partners is available at (click Partners, under Quick Picks ). CONCLUSION The Oracle Spatial option provides advanced spatial capabilities for Oracle Database 10g, addressing the business-critical needs of customers in traditional GIS domains such as defense, homeland security, land management, transportation, as well as new areas such as life sciences. Oracle Spatial with Oracle Database Enterprise Edition is the solution for users who have GIS applications requiring advanced server-side spatial analysis and processing. The first release of Oracle Spatial 10g introduced significant new features. An open GeoRaster format supports the image storage and management requirements from the public sector, defense, and energy exploration domains. Network and topology data models meet the needs of applications in transportation, utilities, land management, life sciences, and location services. A serverside geocoder and routing engine support the deployment of locationbased services, and spatial analysis functions enhance business applications. The second release of Oracle Spatial 10g continues to enhance these capabilities, and introduces an elocation Quick Start feature for quick and easy deployment of mapping, geocoding, and routing services. Oracle holds an 80-90% share of the geospatial database management market (IDC, Oracle 10g: Spatial Capabilities for Enterprise Solutions, Sonnen and Morris, Feb. 2005). Customers and partners rely on Oracle to deliver performance, scalability, security, and ease of use for their spatial applications. Oracle Spatial is supported by all the leading GIS and location services vendors. Oracle Spatial 10g provides the most advanced spatial capabilities available in a relational database management system today, and the unmatched enterprise data management capabilities of Oracle Database 10g making it the leading geospatial database management platform for GIS and enterprise spatial systems. Oracle Spatial 10g Page 7
8 Oracle Spatial 10g August 2005 Authors: Jean Ihm, Xavier Lopez Contributing Authors: Jim Steiner, Siva Ravada, Dan Abugov, Jayant Sharma Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A. Worldwide Inquiries: Phone: Fax: oracle.com 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. OGC, OpenGIS, and CERTIFIED OGC COMPLIANT are trademarks or registered trademarks of Open Geospatial Consortium, Inc. in the United States and in other countries. Other names may be trademarks of their respective owners.
Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model. An Oracle Technical White Paper May 2005
Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model An Oracle Technical White Paper May 2005 Building GIS Applications Using the Oracle Spatial Network Data Model
ETPL Extract, Transform, Predict and Load
ETPL Extract, Transform, Predict and Load An Oracle White Paper March 2006 ETPL Extract, Transform, Predict and Load. Executive summary... 2 Why Extract, transform, predict and load?... 4 Basic requirements
An Oracle White Paper February 2009. Managing Unstructured Data with Oracle Database 11g
An Oracle White Paper February 2009 Managing Unstructured Data with Oracle Database 11g Introduction The vast majority of the information used by corporations, enterprises, and other organizations is referred
An Oracle White Paper June 2009. Integration Technologies for Primavera Solutions
An Oracle White Paper June 2009 Integration Technologies for Primavera Solutions Introduction... 1 The Integration Challenge... 2 Integration Methods for Primavera Solutions... 2 Integration Application
One View Report Samples Warehouse Management
One View Report Samples Warehouse Management Introduction... 1 Application: One View Warehouse Request Inquiry P46270... 2 Report: Warehouse Pick Request Analysis... 2 Report: Warehouse Putaway Request
An Oracle White Paper June 2012. Creating an Oracle BI Presentation Layer from Imported Oracle OLAP Cubes
An Oracle White Paper June 2012 Creating an Oracle BI Presentation Layer from Imported Oracle OLAP Cubes Introduction Oracle Business Intelligence Enterprise Edition version 11.1.1.5 and later has the
Manage Oracle Database Users and Roles Centrally in Active Directory or Sun Directory. Overview August 2008
Manage Oracle Database Users and Roles Centrally in Active Directory or Sun Directory Overview August 2008 Introduction... 3 Centralizing DataBase Account Management using Existing Directories with OVD...
An Oracle White Paper March 2012. Managing Metadata with Oracle Data Integrator
An Oracle White Paper March 2012 Managing Metadata with Oracle Data Integrator Introduction Metadata information that describes data is the foundation of all information management initiatives aimed at
ORACLE OLAP. Oracle OLAP is embedded in the Oracle Database kernel and runs in the same database process
ORACLE OLAP KEY FEATURES AND BENEFITS FAST ANSWERS TO TOUGH QUESTIONS EASILY KEY FEATURES & BENEFITS World class analytic engine Superior query performance Simple SQL access to advanced analytics Enhanced
October 2015. Oracle Application Express Statement of Direction
October 2015 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.
Oracle Application Server 10g Web Services Frequently Asked Questions Oct, 2006
Oracle Application Server 10g Web Services Frequently Asked Questions Oct, 2006 This FAQ addresses frequently asked questions relating to Oracle Application Server 10g Release 3 (10.1.3.1) Web Services
An Oracle White Paper July 2013. Introducing the Oracle Home User in Oracle Database 12c for Microsoft Windows
An Oracle White Paper July 2013 Introducing the Oracle Home User Introduction Starting with Oracle Database 12c Release 1 (12.1), Oracle Database on Microsoft Windows supports the use of an Oracle Home
ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION
ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION EXECUTIVE SUMMARY Oracle business intelligence solutions are complete, open, and integrated. Key components of Oracle business intelligence
An Oracle White Paper October 2009. Frequently Asked Questions for Oracle Forms 11g
An Oracle White Paper October 2009 Frequently Asked Questions for Oracle Forms 11g Disclaimer The following is intended to outline our general product direction. It is intended for information purposes
Oracle Big Data Spatial and Graph
Oracle Big Data Spatial and Graph Oracle Big Data Spatial and Graph offers a set of analytic services and data models that support Big Data workloads on Apache Hadoop and NoSQL database technologies. For
Oracle Business Intelligence Enterprise Edition Plus and Microsoft Office SharePoint Server. An Oracle White Paper October 2008
Oracle Business Intelligence Enterprise Edition Plus and Microsoft Office SharePoint Server An Oracle White Paper October 2008 Oracle Business Intelligence Enterprise Edition Plus and Microsoft Office
March 2014. Oracle Business Intelligence Discoverer Statement of Direction
March 2014 Oracle Business Intelligence Discoverer Statement of Direction Oracle Statement of Direction Oracle Business Intelligence Discoverer Disclaimer This document in any form, software or printed
New 11g Features in Oracle Developer Tools for Visual Studio. An Oracle White Paper January 2008
New 11g Features in Oracle Developer Tools for Visual Studio An Oracle White Paper January 2008 New 11g Features in Oracle Developer Tools for Visual Studio Introduction... 3 Integration with Visual Studio
An Oracle White Paper October 2013. Oracle Data Integrator 12c New Features Overview
An Oracle White Paper October 2013 Oracle Data Integrator 12c Disclaimer This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality, and should
Oracle Business Intelligence ADF Custom Visualizations and Integration. An Oracle White Paper November 2012
Oracle Business Intelligence ADF Custom Visualizations and Integration An Oracle White Paper November 2012 Oracle Business Intelligence ADF Custom Visualizations and Integration OVERVIEW Business users
Oracle Database Gateways. An Oracle White Paper July 2007
Oracle Database Gateways An Oracle White Paper July 2007 Oracle Database Gateways Introduction... 3 Connecting Disparate systems... 3 SQL Translations... 4 Data Dictionary Translations... 4 Datatype Translations...
Oracle Net Services for Oracle10g. An Oracle White Paper May 2005
Oracle Net Services for Oracle10g An Oracle White Paper May 2005 Oracle Net Services INTRODUCTION Oracle Database 10g is the first database designed for enterprise grid computing, the most flexible and
Oracle Database 12c: An Introduction to Oracle s Location Technologies 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 4
Oracle Database 12c: An Introduction to Oracle s Location Technologies 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 4 Table of Contents Introduction 1 Oracle Location Technologies 3 Oracle Database
Driving the Business Forward with Human Capital Management. Five key points to consider before you invest
Driving the Business Forward with Human Capital Management Five key points to consider before you invest For HR leaders to contribute to the business successfully, they need HR solutions with the right
An Oracle White Paper September 2012. Oracle Database and the Oracle Database Cloud
An Oracle White Paper September 2012 Oracle Database and the Oracle Database Cloud 1 Table of Contents Overview... 3 Cloud taxonomy... 4 The Cloud stack... 4 Differences between Cloud computing categories...
Oracle Platform GIS & Location-Based Services. Fred Louis Solution Architect Ohio Valley
Oracle Platform GIS & Location-Based Services Fred Louis Solution Architect Ohio Valley Overview Geospatial Technology Trends Oracle s Spatial Technologies Oracle10g Locator Spatial Oracle Application
Primavera Unifier Integration Overview: A Web Services Integration Approach 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 6
Primavera Unifier Integration Overview: A Web Services Integration Approach 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 6 Introduction Oracle s Primavera Unifier offers an extensible interface
Monitoring and Diagnosing Production Applications Using Oracle Application Diagnostics for Java. An Oracle White Paper December 2007
Monitoring and Diagnosing Production Applications Using Oracle Application Diagnostics for Java An Oracle White Paper December 2007 Monitoring and Diagnosing Production Applications Using Oracle Application
Express Implementation for Electric Utilities
ORACLE UTILITIES Customer Care and Billing Express Implementation for Electric Utilities An Professional Services Offering The Electricity Business Is Changing Today s electric utility finds it almost
Long User ID and Password Support In JD Edwards EnterpriseOne
Long User ID and Password Support In JD Edwards EnterpriseOne An Oracle JD Edwards EnterpriseOne Red Paper November 2007 PURPOSE STATEMENT This document outlines the steps that existing JD Edwards EnterpriseOne
Integrating Tutor and UPK Content: A Complete User Documentation Solution. An Oracle White Paper April 2008
Integrating Tutor and UPK Content: A Complete User Documentation Solution An Oracle White Paper April 2008 Integrating Tutor and UPK Content: A Complete User Documentation Solution TUTOR OR UPK? Oracle
Oracle Spatial and Graph. Jayant Sharma Director, Product Management
Oracle Spatial and Graph Jayant Sharma Director, Product Management Agenda Oracle Spatial and Graph Graph Capabilities Q&A 2 Oracle Spatial and Graph Complete Open Integrated Most Widely Used 3 Open and
Implementing a Custom Search Interface with SES - a case study with search.oracle.com. An Oracle White Paper June 2006
Implementing a Custom Search Interface with SES - a case study with search.oracle.com An Oracle White Paper June 2006 Implementing a Custom Search Interface with SES - a case study with search.oracle.com
ORACLE TAX ANALYTICS. The Solution. Oracle Tax Data Model KEY FEATURES
ORACLE TAX ANALYTICS KEY FEATURES A set of comprehensive and compatible BI Applications. Advanced insight into tax performance Built on World Class Oracle s Database and BI Technology Design after the
<Insert Picture Here> Data Management Innovations for Massive Point Cloud, DEM, and 3D Vector Databases
Data Management Innovations for Massive Point Cloud, DEM, and 3D Vector Databases Xavier Lopez, Director, Product Management 3D Data Management Technology Drivers: Challenges & Benefits
A Comprehensive Solution for API Management
An Oracle White Paper March 2015 A Comprehensive Solution for API Management Executive Summary... 3 What is API Management?... 4 Defining an API Management Strategy... 5 API Management Solutions from Oracle...
Oracle Utilities Customer Care and Billing
Customer Care and Billing Utilities are faced with a rapidly changing industry and increasing expectations from their customers. Adapting to these factors with existing customer information systems likely
An Oracle White Paper January 2012. Oracle Database Firewall
An Oracle White Paper January 2012 Oracle Database Firewall Introduction... 2 Oracle Database Firewall Overview... 3 Oracle Database Firewall... 3 White List for Positive Security Enforcement... 4 Black
An Oracle White Paper July 2011. Oracle Desktop Virtualization Simplified Client Access for Oracle Applications
An Oracle White Paper July 2011 Oracle Desktop Virtualization Simplified Client Access for Oracle Applications Overview Oracle has the world s most comprehensive portfolio of industry-specific applications
10 Questions to Ask Your On-Demand Contact Center Provider. An Oracle White Paper September 2006
10 Questions to Ask Your On-Demand Contact Center Provider An Oracle White Paper September 2006 10 Questions to Ask Your On-Demand Contact Center Provider EXECUTIVE OVERVIEW Building and maintaining a
Oracle Internet of Things Cloud Service
O R A C L E D A T A S H E E T Oracle Internet of Things Cloud Service We live in a world where billions of connected devices, from smart vehicles to smart meters, generate ever-increasing quantities of
Oracle Utilities Mobile Workforce Management Benchmark
An Oracle White Paper November 2012 Oracle Utilities Mobile Workforce Management Benchmark Demonstrates Superior Scalability for Large Field Service Organizations Introduction Large utility field service
Oracle SQL Developer Migration. An Oracle White Paper September 2008
Oracle SQL Developer Migration An Oracle White Paper September 2008 Oracle SQL Developer Migration Overview... 3 Introduction... 3 Supported Databases... 4 Architecture... 4 Migration... 4 Standard Migrate...
An Oracle White Paper November 2010. Leveraging Massively Parallel Processing in an Oracle Environment for Big Data Analytics
An Oracle White Paper November 2010 Leveraging Massively Parallel Processing in an Oracle Environment for Big Data Analytics 1 Introduction New applications such as web searches, recommendation engines,
Oracle BI Publisher Enterprise Cluster Deployment. An Oracle White Paper August 2007
Oracle BI Publisher Enterprise Cluster Deployment An Oracle White Paper August 2007 Oracle BI Publisher Enterprise INTRODUCTION This paper covers Oracle BI Publisher cluster and high availability deployment.
Business Intelligence and Service Oriented Architectures. An Oracle White Paper May 2007
Business Intelligence and Service Oriented Architectures An Oracle White Paper May 2007 Note: The following is intended to outline our general product direction. It is intended for information purposes
An Oracle White Paper May 2012. Oracle Database Cloud Service
An Oracle White Paper May 2012 Oracle Database Cloud Service Executive Overview The Oracle Database Cloud Service provides a unique combination of the simplicity and ease of use promised by Cloud computing
Oracle Data Integrator and Oracle Warehouse Builder Statement of Direction
First Published January 2010 Updated May 2011 Oracle Data Integrator and Oracle Warehouse Builder Statement of Direction Disclaimer This document in any form, software or printed matter, contains proprietary
The Bayesian Approach to Forecasting. An Oracle White Paper Updated September 2006
The Bayesian Approach to Forecasting An Oracle White Paper Updated September 2006 The Bayesian Approach to Forecasting The main principle of forecasting is to find the model that will produce the best
An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview
An Oracle White Paper February 2014 Oracle Data Integrator 12c Introduction Oracle Data Integrator (ODI) 12c is built on several components all working together around a centralized metadata repository.
Contract Lifecycle Management for Public Sector A Procure to Pay Management System
Contract Lifecycle Management for Public Sector A Procure to Pay Management System The Integration of Finance, Supply and Acquisition ORACLE WHITE PAPER OCTOBER 2014 Disclaimer The following is intended
An Oracle White Paper February 2013. Integration with Oracle Fusion Financials Cloud Service
An Oracle White Paper February 2013 Integration with Oracle Fusion Financials Cloud Service Executive Overview Cloud computing is a vision that is increasingly turning to reality for many companies. Enterprises,
How To Load Data Into An Org Database Cloud Service - Multitenant Edition
An Oracle White Paper June 2014 Data Movement and the Oracle Database Cloud Service Multitenant Edition 1 Table of Contents Introduction to data loading... 3 Data loading options... 4 Application Express...
An Oracle White Paper March 2009. Integrating Microsoft SharePoint Server With Oracle Virtual Directory
An Oracle White Paper March 2009 Integrating Microsoft SharePoint Server With Oracle Virtual Directory Oracle White Paper Integrating Microsoft SharePoint Server With Oracle Virtual Directory Disclaimer
Oracle Primavera Gateway
Oracle Primavera Gateway Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is
An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener
An Oracle White Paper May 2013 Creating Custom PDF Reports with Oracle Application Express and the APEX Listener Disclaimer The following is intended to outline our general product direction. It is intended
Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007. An Oracle White Paper July 2008
Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007 An Oracle White Paper July 2008 Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007 To create
Oracle Application Development Framework Overview
An Oracle White Paper June 2011 Oracle Application Development Framework Overview Introduction... 1 Oracle ADF Making Java EE Development Simpler... 2 THE ORACLE ADF ARCHITECTURE... 3 The Business Services
An Oracle White Paper January 2011. Oracle Database Firewall
An Oracle White Paper January 2011 Oracle Database Firewall Introduction... 1 Oracle Database Firewall Overview... 2 Oracle Database Firewall... 2 White List for Positive Security Enforcement... 3 Black
An Oracle White Paper October 2011. BI Publisher 11g Scheduling & Apache ActiveMQ as JMS Provider
An Oracle White Paper October 2011 BI Publisher 11g Scheduling & Apache ActiveMQ as JMS Provider Disclaimer The following is intended to outline our general product direction. It is intended for information
Oracle Primavera P6 Enterprise Project Portfolio Management Performance and Sizing Guide. An Oracle White Paper October 2010
Oracle Primavera P6 Enterprise Project Portfolio Management Performance and Sizing Guide An Oracle White Paper October 2010 Disclaimer The following is intended to outline our general product direction.
Instant Client: An Overview. An Oracle White Paper May 2004
An Oracle White Paper May 2004 Introduction... 3 Advantages For Customers... 3 Instant Deploy and Upgrade... 3 No ORACLE_HOME... 3 Same Functionality... 3 Same High Performance... 3 Small Size... 4 No
Siebel CRM Reports. Easy to develop and deploy. Administration
Siebel CRM Reports The Siebel CRM integration with Oracle Business Intelligence Publisher (BI Publisher) provides an enterprise reporting solution to author, manage, and deliver all types of highly formatted
Digital Asset Management. An Oracle White Paper Updated April 2007
Digital Asset Management An Oracle White Paper Updated April 2007 Digital Asset Management Oracle s digital asset management solution allows organizations to quickly and easily access, manage, share, optimize,
June, 2015 Oracle s Siebel CRM Statement of Direction Client Platform Support
June, 2015 Oracle s Siebel CRM Statement of Direction Client Platform Support Oracle s Siebel CRM Statement of Direction IP2016 Client Platform Support Disclaimer This document in any form, software or
ORACLE FINANCIAL SERVICES ANALYTICAL APPLICATIONS INFRASTRUCTURE
ORACLE FINANCIAL SERVICES ANALYTICAL APPLICATIONS INFRASTRUCTURE KEY FEATURES Rich and comprehensive business metadata allows business users to interact with financial services data model to configure
Mobile-First Strategy. CIO Executive Interview
Mobile-First Strategy CIO Executive Interview Mark Sunday, CIO of Oracle Corporation, interviewed Suhas Uliyar, Vice President of Mobile Strategy Product Management at Oracle, to learn about the critical
Oracle FLEXCUBE Direct Banking Release 12.0.0 Corporate Foreign Exchange User Manual. Part No. E52305-01
Oracle FLEXCUBE Direct Banking Release 12.0.0 Corporate Foreign Exchange User Manual Part No. E52305-01 Corporate Foreign Exchange User Manual Table of Contents 1. Transaction Host Integration Matrix...
Oracle VM Manager Template. An Oracle White Paper February 2009
Oracle VM Manager Template An Oracle White Paper February 2009 Oracle VM Manager Template Using the Oracle VM Manager Template to manage Oracle VM servers. Oracle VM is Oracle's own x86/x86-64 server virtualization
ORACLE DATA SHEET KEY FEATURES AND BENEFITS ORACLE WEBLOGIC SERVER STANDARD EDITION
KEY FEATURES AND BENEFITS STANDARD EDITION Java EE 7 full platform support Java SE 8 certification, support Choice of IDEs, development tools and frameworks Oracle Cloud compatibility Industry-leading
The Case for a Stand-alone Rating Engine for Insurance. An Oracle Brief April 2009
The Case for a Stand-alone Rating Engine for Insurance An Oracle Brief April 2009 The Case for a Stand-alone Rating Engine for Insurance Stand-alone rating engines provide the opportunity to modernize
Highmark Unifies Identity Data With Oracle Virtual Directory. An Oracle White Paper January 2009
Highmark Unifies Identity Data With Oracle Virtual Directory An Oracle White Paper January 2009 Highmark Unifies Identity Data With Oracle Virtual Directory Executive Summary... 3 The Challenge: A Single
Driving Down the High Cost of Storage. Pillar Axiom 600
Driving Down the High Cost of Storage Pillar Axiom 600 Accelerate Initial Time to Value, and Control Costs over the Long Term Make a storage investment that will pay off in rapid time to value and low
Managed Storage Services
An Oracle White Paper January 2014 Managed Storage Services Designed to Meet Your Custom Needs for Availability, Reliability and Security A complete Storage Solution Oracle Managed Cloud Services (OMCS)
An Oracle White Paper July 2013. Accelerating Database Infrastructure Using Oracle Real Application Clusters 11g R2 and QLogic FabricCache Adapters
An Oracle White Paper July 2013 Accelerating Database Infrastructure Using Oracle Real Application Clusters 11g R2 and QLogic FabricCache Adapters Executive Overview Thousands of companies world-wide use
ORACLE DATA QUALITY ORACLE DATA SHEET KEY BENEFITS
ORACLE DATA QUALITY KEY BENEFITS Oracle Data Quality offers, A complete solution for all customer data quality needs covering the full spectrum of data quality functionalities Proven scalability and high
One View Report Samples Financials
One View Report Samples Financials Introduction... 1 Application: One View Customer Ledger Inquiry Accounts Receivable P03B2022... 2 Report: Open Invoices... 2 Report: Customer Balance... 4 Report: Open
Oracle Communications Network Discovery Overview. Updated June 2007
Oracle Communications Network Discovery Overview Updated June 2007 Oracle Communications Network Discovery Overview Oracle Communications Network Discovery provides automated discovery of the network including
PEOPLESOFT CAMPUS SELF-SERVICE
PEOPLESOFT CAMPUS SELF-SERVICE Student, faculty, staff, alumni and donor expectations for access to information, transactions and services over the internet continue to rise. All your institution s constituents
Oracle s BigMachines Solutions. Cloud-Based Configuration, Pricing, and Quoting Solutions for Enterprises and Fast-Growing Midsize Companies
Oracle s BigMachines Solutions Cloud-Based Configuration, Pricing, and Quoting Solutions for Enterprises and Fast-Growing Midsize Companies Oracle s BigMachines cloud-based solutions enable both enterprise
An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide
Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide An Oracle White Paper July 2011 1 Disclaimer The following is intended to outline our general product direction.
An Oracle White Paper April 2013. Reporting Tools in Oracle Fusion Financials
An Oracle White Paper April 2013 Reporting Tools in Oracle Fusion Financials Executive Overview We are living in an Information Age, where the success of an organization depends largely on how effectively
An Oracle White Paper June 2014. Security and the Oracle Database Cloud Service
An Oracle White Paper June 2014 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
ORACLE TUTOR BUSINESS PROCESS CONVERTER
ORACLE TUTOR BUSINESS PROCESS CONVERTER Organizations frequently find that their Visio based business process diagrams have become artifacts. Deploying these models effectively to employees can be difficult,
An Oracle White Paper November 2010. Oracle Business Intelligence Standard Edition One 11g
An Oracle White Paper November 2010 Oracle Business Intelligence Standard Edition One 11g Introduction Oracle Business Intelligence Standard Edition One is a complete, integrated BI system designed for
An Oracle White Paper January 2011. Using Oracle's StorageTek Search Accelerator
An Oracle White Paper January 2011 Using Oracle's StorageTek Search Accelerator Executive Summary...2 Introduction...2 The Problem with Searching Large Data Sets...3 The StorageTek Search Accelerator Solution...3
GEOGRAPHIC INFORMATION SYSTEMS CERTIFICATION
GEOGRAPHIC INFORMATION SYSTEMS CERTIFICATION GIS Syllabus - Version 1.2 January 2007 Copyright AICA-CEPIS 2009 1 Version 1 January 2007 GIS Certification Programme 1. Target The GIS certification is aimed
Achieving Sarbanes-Oxley Compliance with Oracle Identity Management. An Oracle White Paper September 2005
Achieving Sarbanes-Oxley Compliance with Oracle Identity Management An Oracle White Paper September 2005 Achieving Sarbanes-Oxley Compliance with Oracle Identity Management INTRODUCTION The Sarbanes-Oxley
Oracle Role Manager. An Oracle White Paper Updated June 2009
Oracle Role Manager An Oracle White Paper Updated June 2009 Oracle Role Manager Introduction... 3 Key Benefits... 3 Features... 5 Enterprise Role Lifecycle Management... 5 Organization and Relationship
An Oracle White Paper February, 2015. Oracle Database In-Memory Advisor Best Practices
An Oracle White Paper February, 2015 Oracle Database In-Memory Advisor Best Practices Disclaimer The following is intended to outline our general product direction. It is intended for information purposes
Oracle Insurance General Agent Hardware and Software Requirements. Version 8.0
Oracle Insurance General Agent Hardware and Software Requirements Version 8.0 April 2009 Table of Contents OIGA Hardware and Software Requirements... 3 OIGA Installation Configurations... 3 Oracle Insurance
Deploying a Geospatial Cloud
Deploying a Geospatial Cloud Traditional Public Sector Computing Environment Traditional Computing Infrastructure Silos of dedicated hardware and software Single application per silo Expensive to size
Oracle Identity Analytics Architecture. An Oracle White Paper July 2010
Oracle Identity Analytics Architecture An Oracle White Paper July 2010 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may
