Oracle Data Integration and OWB: New for 11gR2

Size: px
Start display at page:

Download "Oracle Data Integration and OWB: New for 11gR2"

Transcription

1 Oracle Data Integration and OWB: New for 11gR2 C. Antonio Romero, Oracle Corporation, Redwood Shores, US Keywords: data integration, etl, real-time, data warehousing, Oracle Warehouse Builder, Oracle Data Integrator, OWB, ODI, knowledge modules, code templates, CDC, Streams, OBI-EE, Advanced Queues Introduction This paper is intended to address the latest data integration offerings from Oracle, in particular as they pertain to Oracle database customers. New features in Oracle Database 11gR2 and especially Oracle Warehouse Builder (OWB) 11.2, delivered with the database, make possible new techniques for customers who take up OWB in ODI-EE. It will review how OWB 11.2 enhancements fit with evolving enterprise data integration requirements, and how Oracle Data Integrator (ODI) technology has been incorporated into OWB. It will then describe some specific data integration scenarios where the new features deliver technical and business benefits to customers who upgrade to OWB Enterprise-Grade Data Integration Requirements Enterprise data integration requirements present a moving target, where what were advanced use cases in the past are now common. A complete review of current trends would be beyond the scope of this paper, but our customers face the following pressures: o Ever-increasing data volumes and smaller batch windows o An ever-larger number, diversity and complexity of systems to be integrated o More demand for near-real-time and event-driven data o The need to turn integrated data into actionable business intelligence o Inevitable cost pressures Viable enterprise data integration solutions must therefore have the following capabilities: o Faster, simpler integration with heterogeneous databases, legacy data, and flat file data sources, including flexibility to accommodate new sources o Multiple data delivery modes: batch ETL, trickle-feed data acquisition and delivery, and CDC o Highly productive development environments that let ETL developers focus on logical design, rather than details of execution, data movement and storage

2 o Rich metadata for objects and transformations, shared across tools in ways that add business value Warehouse Builder, Oracle Data Integrator and ODI-EE Oracle Data Integrator (ODI) and Oracle Warehouse Builder (OWB) are intended to address these underlying business requirements, in somewhat different use cases. Combining them in a single package, Oracle Data Integrator, Enterprise Edition, enabled Oracle to deliver this business value to a wide range of Oracle customers with differing technical requirements. With Warehouse Builder 11.2, many technical and functional benefits previously specific to ODI are now more readily available to customers for whom Warehouse Builder is an overall better fit, and who previously might have considered using the two tools together. Those with an existing investment in OWB designs or skills, or a preference for the end-to-end data warehouse design and ETL capabilities of OWB, can now choose OWB without compromising new technical requirements. OWB s full data warehousing and data integration functionality in the ODI-EE offering and is still linked to the Oracle database. OWB will continue to be a viable implementation choice for years to come. Understanding OWB 11.2 s Major Enhancements OWB has extensive new features and improvements. The ones that generate the most buzz are those that align it with ODI s capabilities: o Template-based code generation known as knowledge module (KM) technology o Native, heterogeneous database connectivity o EL-T in non-oracle databases o SOA integration, including exposing ETL tasks as Web services and invoking Web services from within process flows Others, while not paralleling ODI functionality, are just as significant to many customers: o Oracle Business Intelligence, Enterprise Edition (OBI-EE) metadata integration o Support for trickle-feed mappings using Advanced Queues Finally, there are changes to the OWB product and surrounding experience meant to get more information about OWB capabilities into customers hands. Code Template Mappings: OWB Meets ODI Oracle Data Integrator s distinctive knowledge module functionality, a framework that uses code templates to describe steps in various data integration processes, provide the basis for its flexible support for diverse integration patterns, data movement technologies, and heterogeneous sources and targets.

3 Warehouse Builder 11.2 adds code template-based code generation to provide the same range of capabilities ODI KMs provide, and can generally use KMs from ODI to let Oracle database customers integrate with heterogeneous sources. However, there are differences in terminology, in the internal implementation, and in the tools available for constructing, managing and applying code templates and mappings in OWB, that are more consistent with OWB s architecture and mapping paradigm and more familiar to OWB users. This discussion should clarify how the two technologies fit together. Comparing ODI KMs and OWB Code Templates Warehouse Builder refers to code templates (CTs) rather than knowledge modules. (One major reason for this: the word module is already used in OWB, and confusing terminology such as knowledge module modules could have resulted.) Existing ODI knowledge modules can generally be imported into Warehouse Builder without change; for each knowledge module imported, an analogous OWB code template is created. These code templates come in most of the same varieties as ODI KMs: Load CT (to get data from sources and move it to where it can be integrated), Integration CTs (which do the work of integrating staged intermediate results into a target), Change Data Capture CTs (like ODI s Journaling KMs, used in near-real-time data integration), Control CTs (like ODI s Check KM, used to filter bad rows out before loading) and so on. OWB Code Template Mappings: Extending the Paradigm OWB code template mappings (previously called Knowledge Module mappings) follow the familiar paradigm from classic OWB mappings, with some extra details added. To understand how this works, consider what a classic mapping really is: a logical-level description of data movement and transformation that does not fully describe the details of the data movement and integration process. (This is especially true when you get to cube and dimension loading operators, which embed a lot of complex ETL logic.) OWB generated code from classic mappings to express the logic described, given the version of the target database and many other properties of the mapping. Internally a sort of template mechanism was used, but it was never exposed to the user, and there was no way to change templates. Code template mappings make explicit much that was implicit in classic mappings. Design your mapping logic with the full range of operators that OWB has long supported. Then (and this is the new design step) you specify the data movement and integration mechanisms to use at the physical level. Code template mappings, then, are less of a departure for the OWB ETL developer than one might expect (or fear). The principal differences are: o A new, open code templating mechanism, based on the one in ODI, can be used for some mappings (although classic mappings continue to be available)

4 o The user can explicitly specify which parts of maps are executed on which systems in their landscape and what templates are used to generate code This separation of the physical and logical is in keeping with the ideal of declarative design, which has been embodied by both OWB and ODI, if in different ways. The details of this and the power it provides becomes more clear with an example. Logical and Execution Views of a CT Mapping The mapping editor for code template mappings presents two views of the mapping: o The Logical View is the same as the familiar editor for classic mappings, and describes the logic of how data is to be integrated. o The Execution View is where you identify where code executes, and select code templates used to generate code for different execution steps. The logical view of a code template mapping is essentially indistinguishable from a classic mapping. For example, this mapping loads a Promotions dimension for a Sales cube using OWB s dimension operator: Figure 1

5 Note the Execution View tab at the bottom. Click it to see the mapping s execution view: Figure 2 The boxes EXUNIT_SRC and EXUNIT_TGT group the mapping operators together into execution units, which identify a set of steps for which code will be generated together. Each execution unit is associated one or more code templates (that are used as the basis for code generation) and a location (where execution takes place). In this example, the EXUNIT_SRC execution unit represents two source tables and a join operation. Because the JOINER is in the execution unit, a join operation will be performed on the location set for the execution unit. The output of the join is staged in temporary tables on the target database associated with the EXUNIT_TGT execution unit. The dimension loading executes there, using the staging tables as sources behind the scenes. Each execution unit must then be assigned a code template (=KM) that specifies how code for those integration steps is generated. There are naming conventions for the available code templates shipped with OWB; here the selected code template for EXUNIT_SRC is LCT_SQL_TO_SQL ( Load Code template, generic SQL to SQL ). EXUNIT_TGT has its own specified.

6 One Logical Design, Many Implementations and Topologies For a single logical design, by selecting different execution units, code templates and locations to which code is deployed, you can cause OWB to generate drastically different code to accommodate different scenarios. Simply changing the code template on the source execution unit accommodates the following cases: o Source tables are on the same database, which could be any JDBC-compliant source, accessed through JDBC (which is the example shown) o Source from SQL Server, generate a script for bulk data unload and then bulk data load on the Oracle target o Source from Oracle database, use Data Pump to unload data on the source and load it into the Oracle target The following changes would require grouping the operators into different execution units: o Move the JOIN operator to the target execution unit, and the source table contents will be moved to the Oracle target separately and joined there. The join processing can thus be moved among different databases as needed based on workload, data volumes and so on. o Split the existing source execution unit in two, and you can accommodate source tables hosted on different databases by picking different code templates and locations. The join could be performed on any of these databases. o Split the source execution unit in two, and one or both sources could even be flat files or XML files, again based on the selected template. Again, no logical level changes are required your logical mapping design is identical to the one you created in a classic OWB map. Finally, with OWB s multi-configuration feature, for a single code template mapping you can specify completely different execution view for each configuration group operators into different execution units, and select different CTs. thus, when moving from development to test to production, you can prove out your logical mapping design purely against Oracle, with a completely different execution strategy in test and production. Complex Transformations in CT Maps: The Oracle Target CT So far this mostly sounds like ODI s data integration capabilities except for that dimension loading operator. So if the code generation is based on ODI templates, how does a code template map get to use operators not supported by ODI? A backdoor of sorts has been added to the code template system. Select the target execution unit in our example mapping, and note the following:

7 Figure 3 Note the selected code template for the target execution unit: the built-in default Oracle Target CT. At code generation time, OWB recognizes this template and for the operators in that execution unit, it uses classic OWB code generation. This allows the creation of what we call hybrid maps. You use ODI-like integration mechanisms for the roles to which they are best suited: flexible connectivity/data movement, performing filtering, joining and other straightforward transformations wherever works best in your topology. Then you land the results of that initial processing in Oracle for final integration, using the full range of OWB operators for heavy duty data warehouse transformation dimension and cube loading operators, match-merge operator, pivots, and so on within the execution unit with the Oracle Target CT. Hybrid maps and the explicit split between logical and execution-level views of your mappings are the biggest new conceptual shift in OWB (It takes a little while to get your head around it, but once you do, it s pretty cool.) Cut-and-Paste Migration of Existing Mappings to CT Framework Converting existing Oracle-to-Oracle ETL mappings into code template mappings is actually quite simple from a UI perspective. o Create a new code template mapping module if you don to have one already. o Open the module containing your classic mappings, select one or more mappings to copy, and choose Copy. o Paste them into the desired code template mapping module. o Open each mapping, go to the execution view, and make sure the default execution units are set satisfactorily. If you click the Default Execution Units icon. OWB will create execution units around objects such that objects in different locations are in separate execution units, and reasonable default code templates are attached to each execution unit. Any operators that only work in OWB are in an execution unit associated with the Oracle Target CT. o Set any other required parameters for the selected CTs.

8 This is a reasonable first solution that should produce a working mapping. Users can migrate a small number of critical mappings initially to code templates where the most value is added or just for experimentation, and then later move more mappings in a more systematic way (or ignore those where there is little to be gained by switching). OWB Code Templates and Maintainability The OWB UI for building code templates is based on the familiar OWB Expert framework. OWB code templates can be nested and combined, much as nested experts can be constructed. This makes it easier to build and maintain code templates implementing complex behaviors. For example, one powerful data integration pattern available in both ODI and OWB 11.2 is creating a Load KM or Load CT that uses a native unloader on a source platform to extract data, moves the extracted file to an Oracle host by FTP, and loads the result into staging tables on the destination host. Most of the steps in this process are similar regardless of the source platform; the chief variation would be in the bulk unload command for the source and the loading command on the staging host. In OWB 11.2 one can build a framework of basic Load/Integration CTs that implement the common steps, then invoke those from more complex, platform-specific CTs. This improves maintainability and development efficiency improvements in the code templates in the framework can be leveraged by all mappings using any of the Load CTs. OBI-EE Metadata Integration OWB now supports integration with Oracle Business Intelligence Suite Enterprise Edition (OBI EE). This integration includes: o Derivation of ready-to-use physical, business model and presentation layer metadata for OBI EE from a data warehouse design o Visualization and maintenance of the derived objects from within OWB o Deployment of the derived objects in the form of an RPD file that can be loaded into OBI EE. o Inclusion of the derived objects in OWB data lineage and impact analysis, such that data lineage of objects in OBI EE reports can be traced down to the individual column level. Warehouse Builder can derive definitions for logical tables, catalog folders and dimension drill paths from your data warehouse design metadata, or you can create those definitions yourself. For OBI-EE, you can derive metadata from both Oracle and non-oracle database objects. A wizard walks you through the derivation process. At deployment time, these definitions are published in a UDML file, which can be saved to the file system or pushed out to a remote location by FTP or HTTP/HTTPS. On the OBI-EE end, the user must still convert the UDML file and import the derived objects into OBI-EE or merge them with an existing design.

9 This feature can shorten time-to-value if you are using OBI EE and Warehouse Builder together, and we encourage OBI-EE customers to experiment with it. Trickle Feed Mappings with Advanced Queues OWB now supports a continuous trickle feed loading approach by introducing the concept of trickle feed mappings. (In other words, advanced queues are back!) This is a feature which has showed up in past betas but has never before been included in a shipping version of OWB. Note that trickle feed mappings are OWB classic mappings, and do not depend upon ODI-related functionality. A trickle feed mapping is a mapping with an operator designated as the trickle feed driver representing the source from which data is trickling in. This is based on the Oracle Streams feature in the Oracle database server. The only operator type considered as candidate for the trickle feed driver is the Oracle Advanced Queue (AQ) operator. The rest of the mapping represents the transformation and loading to be performed on each message/event that trickles in from the AQ source. Such a message could be originating from an application publishing the message, or from Streams CDC. OWB can trigger execution of a trickle feed mapping on the arrival of a message in the driver, thereby providing continuous processing. The Streams framework in the Oracle database server provides the infrastructure to implement trickle feed mappings. The Streams framework supports the concept of an Apply daemon that is constantly listening for arrival of messages in a Streams Queue (a secure, transactional Advanced Queue). On arrival of a message, the Apply process passes control to a user-defined apply handler procedure, with the message as input. In OWB trickle feed mappings, the code generated from the OWB mapping is used as the apply handler. OWB and the Web: Updates, Blog, and LinkedIn The Help Menu in Design Center provides two of the major new features in OWB 11.2: o Check for Updates mechanism, through which the OWB team will deliver new code templates, utilities and experts, and links to important resources and announcements. This value-added content is independent of actual formal patches to OWB or the database. o The Warehouse Builder Start Page (available from the Help menu) which links to key getting started -type documentation topics and the Warehouse Builder Blog ( Frequently updated and one of the most widely read blogs at Oracle, the OWB blog runs deep-dive articles on OWB features that even experienced users may not have discovered or fully understood. OWB 11.2 new features and techniques will be covered at length in the coming months. To get the most out of OWB 11.2, follow it closely.

10 The OWB/ODI product management team also runs a LinkedIn Group ( for OWB and ODI users. The group currently has nearly 1000 members, including partners, consultants, developers, and product managers. Join the community to keep up with OWB and ODI. Contact: C. Antonio Romero Oracle Corporation Redwood Shores, US Telephone: antonio.romero@oracle.com

An Oracle White Paper March Oracle Warehouse Builder 11gR2: Feature Groups, Licensing and Feature Usage Management

An Oracle White Paper March Oracle Warehouse Builder 11gR2: Feature Groups, Licensing and Feature Usage Management An Oracle White Paper March 2011 Oracle Warehouse Builder 11gR2: Feature Groups, Licensing and Feature Usage Management Introduction... 1 Warehouse Builder 11gR2: Feature Groups Overview... 3 Enterprise

More information

Data Integration and ETL with Oracle Warehouse Builder

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

More information

Oracle Data Integrator 12c: ETL Integration Bootcamp and New Features

Oracle Data Integrator 12c: ETL Integration Bootcamp and New Features Oracle Data Integrator 12c: ETL Integration Bootcamp and New Features Training Details Training Time : 18 Hours Capacity : 16 Prerequisites : There are no prerequisites for this course. About Training

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: +27 (0)11 319-4111 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive data integration

More information

Getting Started enterprise 88. Oracle Warehouse Builder 11gR2: operational data warehouse. Extract, Transform, and Load data to

Getting Started enterprise 88. Oracle Warehouse Builder 11gR2: operational data warehouse. Extract, Transform, and Load data to Oracle Warehouse Builder 11gR2: Getting Started 2011 Extract, Transform, and Load data to operational data warehouse build a dynamic, Bob Griesemer 1 enterprise 88 orotessionol expertise distilled PUBLISHING

More information

An Introduction to Oracle Warehouse Builder 10gR2. Paul Narth, Ali El Kortobi Oracle Corporation OLSUG, 23 June 2004

An Introduction to Oracle Warehouse Builder 10gR2. Paul Narth, Ali El Kortobi Oracle Corporation OLSUG, 23 June 2004 An Introduction to Oracle Warehouse Builder 10gR2 Paul Narth, Ali El Kortobi Oracle Corporation OLSUG, 23 June 2004 The Challenge? Turning Data into Profit. Transformation Business Intelligence Action

More information

Techno Expert Solutions An institute for specialized studies!

Techno Expert Solutions An institute for specialized studies! Course Content of Data Integration and ETL with Oracle Warehouse Builder: Part 1: Installing and Setting Up the Warehouse Builder Environment What Is Oracle Warehouse Builder? Basic Process Flow of Design

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive

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

Perform scalable data exchange using InfoSphere DataStage DB2 Connector

Perform scalable data exchange using InfoSphere DataStage DB2 Connector Perform scalable data exchange using InfoSphere DataStage Angelia Song (azsong@us.ibm.com) Technical Consultant IBM 13 August 2015 Brian Caufield (bcaufiel@us.ibm.com) Software Architect IBM Fan Ding (fding@us.ibm.com)

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

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-97 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

Data Virtualization Implementation Methodology and Best Practices

Data Virtualization Implementation Methodology and Best Practices White Paper Data Virtualization Implementation Methodology and Best Practices INTRODUCTION Cisco s proven Data Virtualization Implementation Methodology and Best Practices is compiled from our successful

More information

1 Copyright 2013, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: +34916267792 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive data integration platform

More information

MSBI( SSAS, SSIS, SSRS) Course Content:35-40hours

MSBI( SSAS, SSIS, SSRS) Course Content:35-40hours MSBI( SSAS, SSIS, SSRS) Course Content:35-40hours Course Outline SQL Server Analysis Services Course Content SSAS: What Is Microsoft BI? Core concept BI is the cube or UDM Example cube as seen using Excel

More information

MOC 20463C: Implementing a Data Warehouse with Microsoft SQL Server

MOC 20463C: Implementing a Data Warehouse with Microsoft SQL Server MOC 20463C: Implementing a Data Warehouse with Microsoft SQL Server Course Overview This course provides students with the knowledge and skills to implement a data warehouse with Microsoft SQL Server.

More information

1. Attempt any two of the following: 10 a. State and justify the characteristics of a Data Warehouse with suitable examples.

1. Attempt any two of the following: 10 a. State and justify the characteristics of a Data Warehouse with suitable examples. Instructions to the Examiners: 1. May the Examiners not look for exact words from the text book in the Answers. 2. May any valid example be accepted - example may or may not be from the text book 1. Attempt

More information

Chris Claterbos, Vlamis Software Solutions, Inc.

Chris Claterbos, Vlamis Software Solutions, Inc. ORACLE WAREHOUSE BUILDER 10G AND OLAP WHAT S NEW Chris Claterbos, Vlamis Software Solutions, Inc. INTRODUCTION With the use of the new features found in recently updated Oracle s Warehouse Builder (OWB)

More information

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21 Introduction xxix Chapter 1: Welcome to SQL Server Integration Services 1 SQL Server SSIS Historical Overview 2 What s New in SSIS 2 Getting Started 3 Import and Export Wizard 3 The Business Intelligence

More information

Detailed Course Modules for Oracle BI Publisher Online Training:

Detailed Course Modules for Oracle BI Publisher Online Training: Detailed Course Modules for Oracle BI Publisher Online Training: 1 Introduction to Oracle BI Publisher 11g Course Agenda Overview of Oracle BI Foundation Suite Overview of Oracle Fusion Middleware Overview

More information

MICROSOFT BUSINESS INTELLIGENCE

MICROSOFT BUSINESS INTELLIGENCE SSIS MICROSOFT BUSINESS INTELLIGENCE 1) Introduction to Integration Services Defining sql server integration services Exploring the need for migrating diverse Data the role of business intelligence (bi)

More information

Logi Info v12.5 WHAT S NEW

Logi Info v12.5 WHAT S NEW Logi Info v12.5 WHAT S NEW Introduction Logi empowers companies to embed analytics into the fabric of their organizations and products enabling anyone to analyze data, share insights, and make informed

More information

1. SQL Server Integration Services. What Is Microsoft BI? Core concept BI Introduction to SQL Server Integration Services

1. SQL Server Integration Services. What Is Microsoft BI? Core concept BI Introduction to SQL Server Integration Services 1. SQL Server Integration Services What Is Microsoft BI? Core concept BI Introduction to SQL Server Integration Services Product History SSIS Package Architecture Overview Development and Management Tools

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

Data Warehousing. New Features in SAS/Warehouse Administrator Ken Wright, SAS Institute Inc., Cary, NC. Paper

Data Warehousing. New Features in SAS/Warehouse Administrator Ken Wright, SAS Institute Inc., Cary, NC. Paper Paper 114-25 New Features in SAS/Warehouse Administrator Ken Wright, SAS Institute Inc., Cary, NC ABSTRACT SAS/Warehouse Administrator 2.0 introduces several powerful new features to assist in your data

More information

Oracle Warehouse Builder. Oracle Warehouse Builder. Quick Start Guide. Jean-Pierre Dijcks, Igor Machin, March 9, 2004

Oracle Warehouse Builder. Oracle Warehouse Builder. Quick Start Guide. Jean-Pierre Dijcks, Igor Machin, March 9, 2004 Oracle Warehouse Builder Quick Start Guide Jean-Pierre Dijcks, Igor Machin, March 9, 2004 What Can You Expect from this Starter Kit? First and foremost, you can expect a helping hand in navigating through

More information

Analytic Workspace Manager and Oracle OLAP 10g. An Oracle White Paper November 2004

Analytic Workspace Manager and Oracle OLAP 10g. An Oracle White Paper November 2004 Analytic Workspace Manager and Oracle OLAP 10g An Oracle White Paper November 2004 Analytic Workspace Manager and Oracle OLAP 10g Introduction... 3 Oracle Database Incorporates OLAP... 4 Oracle Business

More information

Best ETL Design Practices. Helpful coding insights in SAS DI studio. Techniques and implementation using the Key transformations in SAS DI studio.

Best ETL Design Practices. Helpful coding insights in SAS DI studio. Techniques and implementation using the Key transformations in SAS DI studio. SESUG Paper SD-185-2017 Guide to ETL Best Practices in SAS Data Integration Studio Sai S Potluri, Synectics for Management Decisions; Ananth Numburi, Synectics for Management Decisions; ABSTRACT This Paper

More information

Creating a target user and module

Creating a target user and module The Warehouse Builder contains a number of objects, which we can use in designing our data warehouse, that are either relational or dimensional. OWB currently supports designing a target schema only in

More information

METADATA INTERCHANGE IN SERVICE BASED ARCHITECTURE

METADATA INTERCHANGE IN SERVICE BASED ARCHITECTURE UDC:681.324 Review paper METADATA INTERCHANGE IN SERVICE BASED ARCHITECTURE Alma Butkovi Tomac Nagravision Kudelski group, Cheseaux / Lausanne alma.butkovictomac@nagra.com Dražen Tomac Cambridge Technology

More information

MSBI. Business Intelligence Contents. Data warehousing Fundamentals

MSBI. Business Intelligence Contents. Data warehousing Fundamentals MSBI CAC Noida is an ISO 9001:2015 certified training center with professional experience that dates back to 2005. The vision is to provide professional education merging corporate culture globally to

More information

IBM Data Replication for Big Data

IBM Data Replication for Big Data IBM Data Replication for Big Data Highlights Stream changes in realtime in Hadoop or Kafka data lakes or hubs Provide agility to data in data warehouses and data lakes Achieve minimum impact on source

More information

SAS Data Integration Studio 3.3. User s Guide

SAS Data Integration Studio 3.3. User s Guide SAS Data Integration Studio 3.3 User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Data Integration Studio 3.3: User s Guide. Cary, NC: SAS Institute

More information

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

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

More information

FUNCTIONAL BEST PRACTICES ORACLE USER PRODUCTIVITY KIT

FUNCTIONAL BEST PRACTICES ORACLE USER PRODUCTIVITY KIT FUNCTIONAL BEST PRACTICES ORACLE USER PRODUCTIVITY KIT Purpose Oracle s User Productivity Kit (UPK) provides functionality that enables content authors, subject matter experts, and other project members

More information

Developing Applications with Business Intelligence Beans and Oracle9i JDeveloper: Our Experience. IOUG 2003 Paper 406

Developing Applications with Business Intelligence Beans and Oracle9i JDeveloper: Our Experience. IOUG 2003 Paper 406 Developing Applications with Business Intelligence Beans and Oracle9i JDeveloper: Our Experience IOUG 2003 Paper 406 Chris Claterbos claterbos@vlamis.com Vlamis Software Solutions, Inc. (816) 781-2880

More information

Deccansoft Software Services. SSIS Syllabus

Deccansoft Software Services. SSIS Syllabus Overview: SQL Server Integration Services (SSIS) is a component of Microsoft SQL Server database software which can be used to perform a broad range of data migration, data integration and Data Consolidation

More information

Business Intelligence

Business Intelligence Business Intelligence The Metadata Layer Asroni Ver. 01 asroni@umy.ac.id Part IV Business Intelligence Applications 345 Applications In This Part Chapter 12: The Metadata Layer Chapter 13: Using the Pentaho

More information

MSBI (SSIS, SSRS, SSAS) Course Content

MSBI (SSIS, SSRS, SSAS) Course Content SQL / TSQL Development 1. Basic database and design 2. What is DDL, DML 3. Data Types 4. What are Constraints & types 1. Unique 2. Check 3. NULL 4. Primary Key 5. Foreign Key 5. Default 1. Joins 2. Where

More information

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

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

More information

Aggregating Knowledge in a Data Warehouse and Multidimensional Analysis

Aggregating Knowledge in a Data Warehouse and Multidimensional Analysis Aggregating Knowledge in a Data Warehouse and Multidimensional Analysis Rafal Lukawiecki Strategic Consultant, Project Botticelli Ltd rafal@projectbotticelli.com Objectives Explain the basics of: 1. Data

More information

Analytics Installation and Configuration Guide for On-Premises

Analytics Installation and Configuration Guide for On-Premises Analytics Installation and Configuration Guide for On-Premises Version 18 December 2018 Contents About this Guide... 5 About Primavera Analytics... 5 About Primavera Data Warehouse... 5 About Oracle Business

More information

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle University Contact Us: + 36 1224 1760 Oracle BI 11g R1: Build Repositories Duration: 5 Days What you will learn This Oracle BI 11g R1: Build Repositories training is based on OBI EE release 11.1.1.7.

More information

Course Description. Audience. Prerequisites. At Course Completion. : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs

Course Description. Audience. Prerequisites. At Course Completion. : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs Module Title Duration : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs : 4 days Course Description This four-day instructor-led course provides students with the knowledge and skills to capitalize

More information

Teiid Designer User Guide 7.5.0

Teiid Designer User Guide 7.5.0 Teiid Designer User Guide 1 7.5.0 1. Introduction... 1 1.1. What is Teiid Designer?... 1 1.2. Why Use Teiid Designer?... 2 1.3. Metadata Overview... 2 1.3.1. What is Metadata... 2 1.3.2. Editing Metadata

More information

DISCOVERY HUB RELEASE DOCUMENTATION

DISCOVERY HUB RELEASE DOCUMENTATION DISCOVERY HUB 17.11 RELEASE DOCUMENTATION Contents Introduction... 3 New Features... 4 Data Tagging... 4 Semantic Layer... 4 New Visualization Possibilities with the Relation Diagram... 5 Uniquely Identify

More information

So You Want To Be A Rockstar Report Developer?

So You Want To Be A Rockstar Report Developer? So You Want To Be A Rockstar Report Developer? October 15-18, 2013 Charlotte, NC Melissa Coates, BI Architect BlueGranite Speaker Bio Melissa Coates Business Intelligence & Data Warehousing Developer BI

More information

Supplied service Conversion service of an Oracle Warehouse Builder project to a corresponding Oracle Data Integrator project.

Supplied service Conversion service of an Oracle Warehouse Builder project to a corresponding Oracle Data Integrator project. White paper INTRODUCTION OWB v.10.2 premier support ended on July 2010. OWB v.11.1 premier support will end on August 2012. OWB v.11.2 (available from September 2009) premier support will end on January

More information

Xcelerated Business Insights (xbi): Going beyond business intelligence to drive information value

Xcelerated Business Insights (xbi): Going beyond business intelligence to drive information value KNOWLEDGENT INSIGHTS volume 1 no. 5 October 7, 2011 Xcelerated Business Insights (xbi): Going beyond business intelligence to drive information value Today s growing commercial, operational and regulatory

More information

Full file at

Full file at Chapter 2 Data Warehousing True-False Questions 1. A real-time, enterprise-level data warehouse combined with a strategy for its use in decision support can leverage data to provide massive financial benefits

More information

Oracle Streams. An Oracle White Paper October 2002

Oracle Streams. An Oracle White Paper October 2002 Oracle Streams An Oracle White Paper October 2002 Oracle Streams Executive Overview... 3 Introduction... 3 Oracle Streams Overview... 4... 5 Staging... 5 Propagation... 6 Transformations... 6 Consumption...

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

to-end Solution Using OWB and JDeveloper to Analyze Your Data Warehouse

to-end Solution Using OWB and JDeveloper to Analyze Your Data Warehouse An End-to to-end Solution Using OWB and JDeveloper to Analyze Your Data Warehouse Presented at ODTUG 2003 Dan Vlamis dvlamis@vlamis.com Vlamis Software Solutions, Inc. (816) 781-2880 http://www.vlamis.com

More information

SAP HANA Certification Training

SAP HANA Certification Training About Intellipaat Intellipaat is a fast-growing professional training provider that is offering training in over 150 most sought-after tools and technologies. We have a learner base of 600,000 in over

More information

Title: Episode 11 - Walking through the Rapid Business Warehouse at TOMS Shoes (Duration: 18:10)

Title: Episode 11 - Walking through the Rapid Business Warehouse at TOMS Shoes (Duration: 18:10) SAP HANA EFFECT Title: Episode 11 - Walking through the Rapid Business Warehouse at (Duration: 18:10) Publish Date: April 6, 2015 Description: Rita Lefler walks us through how has revolutionized their

More information

Extend EBS Using Applications Express

Extend EBS Using Applications Express Extend EBS Using Applications Express John Peters JRPJR, Inc. Abstract Few people know about Oracle Applications Express (APEX) an actual free Oracle Tool included with your Oracle DB Licenses. How many

More information

Jet Data Manager 2014 SR2 Product Enhancements

Jet Data Manager 2014 SR2 Product Enhancements Jet Data Manager 2014 SR2 Product Enhancements Table of Contents Overview of New Features... 3 New Features in Jet Data Manager 2014 SR2... 3 Improved Features in Jet Data Manager 2014 SR2... 5 New Features

More information

Analytics: Server Architect (Siebel 7.7)

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

More information

Contents. Microsoft is a registered trademark of Microsoft Corporation. TRAVERSE is a registered trademark of Open Systems Holdings Corp.

Contents. Microsoft is a registered trademark of Microsoft Corporation. TRAVERSE is a registered trademark of Open Systems Holdings Corp. TPLWPT Contents Summary... 1 General Information... 1 Technology... 2 Server Technology... 2 Business Layer... 4 Client Technology... 4 Structure... 4 Ultra-Thin Client Considerations... 7 Internet and

More information

High Speed ETL on Low Budget

High Speed ETL on Low Budget High Speed ETL on Low Budget Introduction Data Acquisition & populating it in a warehouse has traditionally been carried out using dedicated ETL tools available in the market. An enterprise-wide Data Warehousing

More information

Oracle Data Integrator 12c New Features

Oracle Data Integrator 12c New Features Oracle Data Integrator 12c New Features Joachim Jaensch Principal Sales Consultant Copyright 2014 Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The following is intended to outline

More information

Hyperion Interactive Reporting Reports & Dashboards Essentials

Hyperion Interactive Reporting Reports & Dashboards Essentials Oracle University Contact Us: +27 (0)11 319-4111 Hyperion Interactive Reporting 11.1.1 Reports & Dashboards Essentials Duration: 5 Days What you will learn The first part of this course focuses on two

More information

Enterprise Data Catalog for Microsoft Azure Tutorial

Enterprise Data Catalog for Microsoft Azure Tutorial Enterprise Data Catalog for Microsoft Azure Tutorial VERSION 10.2 JANUARY 2018 Page 1 of 45 Contents Tutorial Objectives... 4 Enterprise Data Catalog Overview... 5 Overview... 5 Objectives... 5 Enterprise

More information

Salesforce Certified Marketing Cloud Consultant Study Guide

Salesforce Certified Marketing Cloud Consultant Study Guide Salesforce Certified Marketing Cloud Consultant Study Guide Spring 16 BETA STUDY GUIDE 0 Contents SECTION 1. PURPOSE OF THIS STUDY GUIDE... 2 SECTION 2. ABOUT THE SALESFORCE CERTIFIED MARKETING CLOUD CONSULTANT

More information

INTRODUCTION. Chris Claterbos, Vlamis Software Solutions, Inc. REVIEW OF ARCHITECTURE

INTRODUCTION. Chris Claterbos, Vlamis Software Solutions, Inc. REVIEW OF ARCHITECTURE BUILDING AN END TO END OLAP SOLUTION USING ORACLE BUSINESS INTELLIGENCE Chris Claterbos, Vlamis Software Solutions, Inc. claterbos@vlamis.com INTRODUCTION Using Oracle 10g R2 and Oracle Business Intelligence

More information

Using IBM Rational Business Developer wizards to create a Web application

Using IBM Rational Business Developer wizards to create a Web application Using IBM Rational Business Developer wizards to create a Web application Skill Level: Intermediate Reginaldo Barosa (rbarosa@us.ibm.com) Executive IT Specialist IBM 03 Mar 2008 Updated 05 Aug 2008 This

More information

Migrating NetBackUp Data to the Commvault Data Platform

Migrating NetBackUp Data to the Commvault Data Platform Migrating NetBackUp Data to the Commvault Data Platform LEGACY MIGRATION OVERVIEW Legacy backup data migrations are typically perceived to be high-cost, take a long time to complete, and prone to error

More information

Lasso Your Business Users by Designing Information Pathways to Optimize Standardized Reporting in SAS Visual Analytics

Lasso Your Business Users by Designing Information Pathways to Optimize Standardized Reporting in SAS Visual Analytics Paper 2960-2015 Lasso Your Business Users by Designing Information Pathways to Optimize Standardized Reporting in SAS Visual Analytics ABSTRACT Stephen Overton, Zencos Consulting SAS Visual Analytics opens

More information

Pick A Winner! In What Tool Should I Develop My Next App?

Pick A Winner! In What Tool Should I Develop My Next App? Pick A Winner! In What Tool Should I Develop My Next App? Mia Urman, CEO, AuraPlayer Inc. @miaurman @auraplayer Who is Mia Urman? miaurman@auraplayer.com Oracle ACE Director & Development Geek for over

More information

Designing your BI Architecture

Designing your BI Architecture IBM Software Group Designing your BI Architecture Data Movement and Transformation David Cope EDW Architect Asia Pacific 2007 IBM Corporation DataStage and DWE SQW Complex Files SQL Scripts ERP ETL Engine

More information

Oracle 1Z0-482 Exam Questions and Answers (PDF) Oracle 1Z0-482 Exam Questions 1Z0-482 BrainDumps

Oracle 1Z0-482 Exam Questions and Answers (PDF) Oracle 1Z0-482 Exam Questions 1Z0-482 BrainDumps Oracle 1Z0-482 Dumps with Valid 1Z0-482 Exam Questions PDF [2018] The Oracle 1Z0-482 Oracle Data Integrator 11g Certified Implementation Essentials exam is an ultimate source for professionals to retain

More information

Oracle Data Integrator: An Executive Overview. An Oracle White Paper Updated January 2007

Oracle Data Integrator: An Executive Overview. An Oracle White Paper Updated January 2007 Oracle Data Integrator: An Executive Overview An Oracle White Paper Updated January 2007 Oracle Data Integrator: An Executive Overview EXECUTIVE OVERVIEW Data is one of your company s most important assets,

More information

Azure Data Factory VS. SSIS. Reza Rad, Consultant, RADACAD

Azure Data Factory VS. SSIS. Reza Rad, Consultant, RADACAD Azure Data Factory VS. SSIS Reza Rad, Consultant, RADACAD 2 Please silence cell phones Explore Everything PASS Has to Offer FREE ONLINE WEBINAR EVENTS FREE 1-DAY LOCAL TRAINING EVENTS VOLUNTEERING OPPORTUNITIES

More information

Using Oracle9i Warehouse Builder and Oracle 9i to create OLAP ready Warehouses

Using Oracle9i Warehouse Builder and Oracle 9i to create OLAP ready Warehouses Using Oracle9i Warehouse Builder and Oracle 9i to create OLAP ready Warehouses IOUG-2003 Paper #416 Chris Claterbos claterbos@vlamis.com Vlamis Software Solutions, Inc. (816) 729-1034 http://www.vlamis.com

More information

Best Practice for Creation and Maintenance of a SAS Infrastructure

Best Practice for Creation and Maintenance of a SAS Infrastructure Paper 2501-2015 Best Practice for Creation and Maintenance of a SAS Infrastructure Paul Thomas, ASUP Ltd. ABSTRACT The advantage of using metadata to control and maintain data and access to data on databases,

More information

Loading and Extracting HFM data with ODI Knowledge Modules

Loading and Extracting HFM data with ODI Knowledge Modules Loading and Extracting HFM 11.1.2.4 data with ODI Knowledge Modules Introduction Oracle Hyperion Financial Management (HFM) is an Enterprise Performance Management (EPM) tool that provides financial consolidation

More information

Chris Claterbos, Vlamis Software Solutions, Inc. David Fuston, Vlamis Software Solutions, Inc.

Chris Claterbos, Vlamis Software Solutions, Inc. David Fuston, Vlamis Software Solutions, Inc. USING ORACLE WAREHOUSE BUILDER 9I AND ORACLE 9I TO CREATE OLAP READY WAREHOUSES Chris Claterbos, Vlamis Software Solutions, Inc. David Fuston, Vlamis Software Solutions, Inc. INTRODUCTION With the use

More information

21ST century enterprise. HCL Technologies Presents. Roadmap for Data Center Transformation

21ST century enterprise. HCL Technologies Presents. Roadmap for Data Center Transformation 21ST century enterprise HCL Technologies Presents Roadmap for Data Center Transformation june 2016 21st Century Impact on Data Centers The rising wave of digitalization has changed the way IT impacts business.

More information

Microsoft End to End Business Intelligence Boot Camp

Microsoft End to End Business Intelligence Boot Camp Microsoft End to End Business Intelligence Boot Camp 55045; 5 Days, Instructor-led Course Description This course is a complete high-level tour of the Microsoft Business Intelligence stack. It introduces

More information

Oracle Education Partner, Oracle Testing Center Oracle Consultants

Oracle Education Partner, Oracle Testing Center Oracle Consultants Oracle Reports Developer 10g: Build Reports (40 hrs) What you will learn: In this course, students learn how to design and build a variety of standard and custom Web and paper reports using Oracle Reports

More information

Oracle WebCenter Content 11g: Content Server Customization

Oracle WebCenter Content 11g: Content Server Customization Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle WebCenter Content 11g: Content Server Customization Duration: 5 Days What you will learn This Oracle WebCenter Content

More information

VMworld 2015 Track Names and Descriptions

VMworld 2015 Track Names and Descriptions Software- Defined Data Center Software- Defined Data Center General VMworld 2015 Track Names and Descriptions Pioneered by VMware and recognized as groundbreaking by the industry and analysts, the VMware

More information

QMF Analytics v11: Not Your Green Screen QMF

QMF Analytics v11: Not Your Green Screen QMF QMF Analytics v11: Not Your Green Screen QMF Central Ohio Db2 Users Group CODUG December 5, 2017 Roger Midgette The Fillmore Group Frank Fillmore The Fillmore Group Doug Anderson Rocket Software roger.midgette@thefillmoregroup.com

More information

ASG WHITE PAPER DATA INTELLIGENCE. ASG s Enterprise Data Intelligence Solutions: Data Lineage Diving Deeper

ASG WHITE PAPER DATA INTELLIGENCE. ASG s Enterprise Data Intelligence Solutions: Data Lineage Diving Deeper THE NEED Knowing where data came from, how it moves through systems, and how it changes, is the most critical and most difficult task in any data management project. If that process known as tracing data

More information

MS-55045: Microsoft End to End Business Intelligence Boot Camp

MS-55045: Microsoft End to End Business Intelligence Boot Camp MS-55045: Microsoft End to End Business Intelligence Boot Camp Description This five-day instructor-led course is a complete high-level tour of the Microsoft Business Intelligence stack. It introduces

More information

DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI

DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI Department of Computer Science and Engineering IT6801 - SERVICE ORIENTED ARCHITECTURE Anna University 2 & 16 Mark Questions & Answers Year / Semester: IV /

More information

Designing the staging area contents

Designing the staging area contents We are going to design and build our very first ETL mapping in OWB, but where do we get started? We know we have to pull data from the acme_pos transactional database as we saw back in topic 2. The source

More information

Test Automation for data teams with Tosca BI

Test Automation for data teams with Tosca BI Data migration / DWH / BI testing Test Automation for data teams with Tosca BI By Daina Dirmaitė I Nov 13, 2018 Data Testing Challenges 1. Data models and data mapping documents in many ways represent

More information

Virtustream Managed Services Drive value from technology investments through IT management solutions. Tim Calahan, Manager Managed Services

Virtustream Managed Services Drive value from technology investments through IT management solutions. Tim Calahan, Manager Managed Services Virtustream Managed Services Drive value from technology investments through IT management solutions Tim Calahan, Manager Managed Services Virtustream Managed Services Your partner in delivering IT as

More information

MSMQ-MQSeries Bridge Configuration Guide White Paper

MSMQ-MQSeries Bridge Configuration Guide White Paper MSMQ-MQSeries Bridge Configuration Guide White Paper Published: November 2000 Table of Contents Table of Contents...1 Introduction...1 Definitions... 2 How the Bridge Works...5 MSMQ-MQSeries Bridge Installation...

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 Managing Oracle Database 12c with Oracle Enterprise Manager 12c Martin

More information

Microsoft SQL Server Training Course Catalogue. Learning Solutions

Microsoft SQL Server Training Course Catalogue. Learning Solutions Training Course Catalogue Learning Solutions Querying SQL Server 2000 with Transact-SQL Course No: MS2071 Two days Instructor-led-Classroom 2000 The goal of this course is to provide students with the

More information

Oracle Reports Developer 10g: Build Reports

Oracle Reports Developer 10g: Build Reports Oracle University Contact Us: +603 2299 3600, 1 800 80 6277 Oracle Reports Developer 10g: Build Reports Duration: 5 Days What you will learn In this course, participants learn how to design and build a

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-97 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

Certification Exam Guide SALESFORCE CERTIFIED MARKETING CLOUD CONSULTANT. Winter Salesforce.com, inc. All rights reserved.

Certification Exam Guide SALESFORCE CERTIFIED MARKETING CLOUD CONSULTANT. Winter Salesforce.com, inc. All rights reserved. Certification Exam Guide SALESFORCE CERTIFIED MARKETING CLOUD CONSULTANT Winter 18 2017 Salesforce.com, inc. All rights reserved. S ALESFORCE CERTIFIED MARKETING CLOUD CONSULTANT CONTENTS About the Salesforce

More information

Information empowerment for your evolving data ecosystem

Information empowerment for your evolving data ecosystem Information empowerment for your evolving data ecosystem Highlights Enables better results for critical projects and key analytics initiatives Ensures the information is trusted, consistent and governed

More information

Documentation Accessibility

Documentation Accessibility Oracle Warehouse Builder Release Notes 11g Release 2 (11.2) E10585-04 March 2010 This document contains important information not included in the Oracle Warehouse Builder documentation. This document provides

More information

Oracle Enterprise Manager 12c Sybase ASE Database Plug-in

Oracle Enterprise Manager 12c Sybase ASE Database Plug-in Oracle Enterprise Manager 12c Sybase ASE Database Plug-in May 2015 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Getting Started with Rational Team Concert

Getting Started with Rational Team Concert Getting Started with Rational Team Concert or RTC in 16 Steps Kai-Uwe Maetzel IBM Rational Software kai-uwe_maetzel@us.ibm.com SDP 20 2009 IBM Corporation This Presentation is Good for You if You know

More information