Performance Tuning Oracle s BI Applications

Size: px
Start display at page:

Download "Performance Tuning Oracle s BI Applications"

Transcription

1 Performance Tuning Oracle s BI Applications Jeff McQuigg Senior BI Architect April 24, 2013 Start Here KPI Partners Inc. Contact Us

2 Agenda 2

3 Agenda 1Introducing The Performance Layer 2Building The Performance Layer 3Mapping Into Oracle BI 4Implementation Considerations 5Q&A 3

4 Introducing The Performance Layer 4

5 Introducing The Performance Layer Targeted At Organizations Who Have: Large Data Volumes Highly Customized Tables Questionable Design Extensions Aggressive Performance Targets Slow Hardware Only a Data Warehouse 5

6 Introducing The Performance Layer These performance concepts are applicable to any BI system BI Apps (OBIA) Stars Custom Stars in OBIA Custom Built Warehouses SQL Server 6

7 Introducing The Performance Layer Wide tables carry more data than you need Dashboards only need a few fields Smaller is faster 7

8 Introducing The Performance Layer Eliminate other and conflicting priorities Singular focus on performance Performance starts with clear design goals 8

9 Introducing The Performance Layer Great performance requires perfect design for how it is used A Dashboarding environment is an Application Use a top-down design approach to support that application Specialized design for specialized usage 9

10 Introducing The Performance Layer Pre-built logic Clean star models Reduced data weight Tables which match usage by Oracle BI Top-Down design yields 10

11 Introducing The Performance Layer >> Oracle s View On Data Warehouse Architecture 11

12 Introducing The Performance Layer Keep the BI Apps/DW model mostly as-is & add a Performance Layer 1 Build a new data model 2 Copy data from BI Apps/DW tables 3 Bring only what you need 4 Denormalize & pre-calculate *Optimize To Usage* BI Apps Data Fridge ETL Performance Mini-Fridge 12

13 Introducing The Performance Layer - Takeaways 1 The Performance Layer is an industry standard architecture 2 Design is driven only by report performance improvement 3 Travel light 4 No need to alter BI Apps or DW 13

14 Building The Performance Layer 14

15 Building The Performance Layer 1. Identify a priority area (select a Fact table) 2. Identify common use cases (reports w/ prompts & data security) 3. Analyze resulting physical SQL 4. Try to tune the BI Apps model first! (Indexes, etc) 15

16 Building The Performance Layer 5. Prototype a new data model to match those needs (SQL handcrafting of new tables) 6. Adjust SQL & benchmark (SQL handcrafting needed) 7. Map into Oracle BI & test (Unit & Regression) 8. Benchmark the Oracle BI report using prototyped tables (Reports have many SQLsn) 16

17 Building The Performance Layer 9. Build the tables using INFA & DAC - Complete Oracle BI RPD mapping 10. Formal Regression Test 11. Deploy 12. Enjoy praise from users 17

18 Building The Performance Layer Reduce I/O with extreme prejudice Tune the BI Apps model first! It may work for you with low effort Employ techniques to eliminate I/O wherever possible Partition Elimination, Compression, Indexes, Aggregates, Star Transformations Let the Performance Layer do the work, not the report query Follow the KISS principle: Use a simple and clean Star. No Snowflakes! Ensure OBI is mapped properly and uses correct tables with perfect SQL Favor a general approach as opposed to a case-by-case approach A rising tide lifts all boats 18

19 Building The Performance Layer There are 4 kinds of tables in the Performance Layer: 1. Skinny Dimension and Fact tables 2. New Dimension tables 3. Mini-Dimension tables 4. Fact Aggregate tables Built directly from the base BI Apps or DW tables BI Apps or DW Perf. Layer Goal: use these tables in as many reports as possible Guiding principles and performance influences: 1. Application use cases drive the layer s design 2. Use minimal data for the job at hand 3. Aggregate Fact data when needed 4. Denormalize dimensions to eliminate extra joins 5. Pre-Build calculations to eliminate extra joins 6. Pre-Split data sets based on logical usage 19

20 Building The Performance Layer Table Partitioning Query Indexing (4 Types) For all Fact tables of a reasonable size (e.g., > 5M rows) Usually partition on Month (Range or Interval) The Database can easily eliminate the majority of the table Allows for smaller, local indexes Before Beginning: Tune the OOTB Model 1 Single column, local bitmap indexes on all Fact table FKs (_WIDs) and filter fields (DELETE_FLG) 2 Single column bitmap indexes on all dimensional fields used in any sort of prompt or report filter 3 Special composite B-Tree indexes to assist Snowflaked areas 4 Composite B-Tree indexes on large dimensions for join backs (for list reports) 20

21 Building The Performance Layer Skinny Tables are highly selective versions of the BI Apps or DW tables Horizontal Aggregation E.g., 10 columns vs. 100 in the base table Both Dimensions and Facts Very easy to build and use Goal: Reduce Avg. Row Length to 1/5 th - 1/20 th original size Include only the columns you will need for top-down reporting analysis If you don t need Customer Address, don t include it Ignore Meta Data columns (e.g., INTEGRATION_ID, etc.) Row sets are identical (1:1) with the base tables For Dimensions use the same ROW_WIDs - can be used with existing fact tables easily 21

22 Building The Performance Layer Build using: 1. Create Table as Select (CTAS) 2. Insert /*+ APPEND */ 3. Materialized Views Compress the table Use Parallel hints & options Don t forget partitions Enhance the tables with calculation logic Database is very fast at these operations expect only a few minutes for 100M rows CREATE TABLE WC_ACCT_BUDGET_SF COMPRESS NOLOGGING PARALLEL (DEGREE 8) PARTITION BY RANGE(PERIOD_END_DT_WID) INTERVAL(NUMTOYMINTERVAL(1, 'MONTH')) (PARTITION Part_01 VALUES LESS THAN ( )) AS SELECT /*+ PARALLEL(F,8) */ F.PERIOD_END_DT_WID, F.X_PERIOD_END_DT_WID, F.COMPANY_ORG_WID, F.GL_ACCOUNT_WID, F.X_POSTED_TOTAL_AMT, case when GL_D."GL_ACCOUNT_NUM" = 'S250' then F."X_POSTED_TOTAL_AMT" end as PLAN_CASES, FROM W_ACCT_BUDGET_F F, W_GL_ACCOUNT_D GL_D WHERE F.GL_ACCOUNT_WID = GL_D.ROW_WID; 22

23 Building The Performance Layer Enhance _SF tables with logic Identify CASE WHEN statements which require other dimensions Potential great benefit if the join can be eliminated Don t over do it table will get less skinny with each column Identify any data set splitting from the RPD HR Workforce Events table has both Events and Snapshots records but they are always used separately in the RPD Usage drives design: Split them out! Huge benefit for Event counting metrics (~10% of table) case when GL_D."GL_ACCOUNT_NUM" = 'S250' then F."X_POSTED_TOTAL_AMT" end as PLAN_CASES, FROM W_ACCT_BUDGET_F F, W_GL_ACCOUNT_D GL_D WHERE F.GL_ACCOUNT_WID = GL_D.ROW_WID; Create table WC_WRKFC_EVT_EVENTS_SF WHERE SNAPSHOT_IND = 0 Create table WC_WRKFC_EVT_MONTH_SNP_SF WHERE SNAPSHOT_IND = 1 23

24 Building The Performance Layer Typical to get a 10X to 20X and even 50X I/O benefit in the _SF vs. the base _F in size Reduced AVG_ROW_LEN COMPRESSION Record Set Splitting All without any aggregation Skinny Dimensions also have benefits: Real Examples Sub Ledger (custom) Workforce Snap Workforce Events GL Balance Acct Budget I/O Benefit 24X 11X 56X 21X 32X 1. All I/O is a killer and slows down the entire system 2. De-normalize into a Star (eliminate snowflakes & outer joins) 3. Real World Ex. #1: 2 wide dims 2 skinny dims: 6X query improvement 4. Real World Ex. #2: One query going from 11s to 4s with one skinny dim 5. Real World Ex. #3: GL Account Dimension: 37X I/O benefit 24

25 Building The Performance Layer Pre-build major pieces of commonly used but complex logic into the Data Model Over-relying on the RPD or Reports for logic can harm performance Let the ETL for the Performance Layer do the work not the query Example #1: Large binning and bucketing CASE WHEN FACT.ORDER_AMT BETWEEN 0 and 100 THEN ELSE CASE WHEN FACT.ORDER_AMT BETWEEN 101 and 200 THEN END Build a new dimension table to hold these values WC_CUST_ORDER_QTY_BAND_D Example #2: Date format conversions dynamically building a new column with a string concatenation statement: substring(t66755."per_name_month", 1, 4), '') + '-' + isnull(right(t66755."per_name_month", 2), '') Build a new column in the W_DAY_D table & index it 25

26 Building The Performance Layer Simply a higher level or levels of a larger dimension A combination of several Kimball concepts Granularities will be mixed Make a new table from the large, base dimension Contains distinct combinations Use only commonly used fields Get cues from dashboard prompts, column selectors, report filters Create a new ROW_WID Compress and index as normal, Parallel if needed for creation Easy to build and map Create table WC_EMPLOYEE_MD COMPRESS as select ROWNUM AS ROW_WID, W_ETHNIC_GRP_DESC, WC_RACE_ETHNIC_DIVRSE_GRP_DESC, W_SEX_MF_CODE, W_SEX_MF_DESC, WC_NON_EMPLOYEE_VENDOR_NAME from ( select distinct W_ETHNIC_GRP_DESC, WC_RACE_ETHNIC_DIVRSE_GRP_DESC, W_SEX_MF_CODE, W_SEX_MF_DESC, WC_NON_EMPLOYEE_VENDOR_NAME from W_EMPLOYEE_D); This real world example created 5,400 records from a W_EMPLOYEE_D of 9+ Million rows. 26

27 Building The Performance Layer _MD tables are used in the Performance Layer in two places: 1. Link into Skinny Facts Use a separate FK in addition to the base _WID Fact table has both EMPLOYEE_WID and EMPLOYEE_MD_WID Thus the _SF can join to all of the following: New Mini Dimension (_MD) (~1% rows, some columns) New Skinny Dimension (_SD) (100% rows, some columns) Base BI Apps/DW Dimension (_D) (100% rows, 100% columns) _MD Conceptual Size Differences The OBI RPD can select which one is best for each query _SD _D Benefits of linking into the _SF 1. The same set of fact rows are selected no benefit 2. Reduced dimension I/O, CPU and buffer space 3. Faster join-back on list reports 4. Very fast prompts, especially when constrained 27

28 Building The Performance Layer 2. Use them for very high level Fact Aggregates Build a Fact aggregate at the Mini-Dimension level Allows greater field inclusion with excellent aggregation ratios Multiple fields are available - not just one A good Mini Dimension and Skinny Fact/Aggregate can serve a large % of dashboard queries MD s & Fact Aggregates offer extreme performance: 1. Real World Ex #1: From time-out after 10 minutes to 4 seconds 2. Real World Ex #2: GL Account MD: 131X I/O benefit 28

29 Building The Performance Layer Aggregates are used when summary reports exist Pre-aggregate the dataset to make it smaller & faster Sometimes they are the only solution Typically a minimum of a 10:1 ratio is used Use all database tools as with any fact table Partitioning, Indexing, Star Transformations, Compression For extreme needs, consider merging facts together Ex: Monthly Actuals and Budgets Be mindful of gaps in datasets and non-conformed dimensions Advanced implementations use partition management to build only changed data for faster load times 29

30 Building The Performance Layer- Takeaways 1 Building the underlying tables is relatively simple 2 But strong SQL & Tuning expertise is needed 3 Take cues from dashboard, report & RPD configuration 4 Any savings in I/O helps the overall system 5 Use all of the available database performance tools 30

31 Mapping Into Oracle BI 31

32 Mapping Into Oracle BI Link as much as possible to allow for the best performance across all scenarios Best Performance Layer Better BI Apps Base 32

33 Mapping Into Oracle BI The 3 Fact tables are mapped like any aggregate The Skinny Fact (_SF) will have fewer dimensions and fewer metrics mapped to it Along the Employee dimension however it is the same as the base _F OBI will prefer to use the _SF over the _F Uses regular aggregate navigation concepts Uses the _F when needed as a backup plan _A _SF _F 33

34 Mapping Into Oracle BI Raise the priority group on the base _D to have OBI prefer the _SD As both LTS grains are identical, OBI needs more info to make a choice _D _SD 34

35 Mapping Into Oracle BI Create a dummy hierarchy level and map the LTSs for the Mini Dimension and Fact Aggregate to it The grain of the Mini Dimension is arbitrary As long as OBI knows it is higher than the other LTSs it will be preferred (Priority groups not needed) _MD _A 35

36 Mapping Into Oracle BI - Takeaways Table Mapping The mapping of tables is straightforward Link Tables As Much As Possible Let Oracle BI make the best choice 36

37 Implementation Considerations 37

38 Implementation Considerations The whole prototyping process can be done on a simple star in roughly two weeks Allow for more time if you have: Large data volumes Difficult performance targets More complex models and logic Many disparate report patterns or lots of reports to consider More stars are needed (e.g., Actuals and Budgets together) Development effort depends on # new objects Typically only another two weeks needed (ETL & OBI RPD) A few more for regression test and deployment 38

39 Implementation Considerations Use Production data volumes for accurate analysis Use Production DDL, ETL code, OBI RPD and OBI Webcat Quiet, unused machine for accurate benchmarking Use hardware that is as similar to Prod as possible KPI uses a database benchmarking tool to compare environments 39

40 Implementation Considerations Additional ETL & RPD Development Use SQL scripts instead of Informatica mappings (less effort, faster execution) Additional Testing Regression test is easy Additional ETL Run Time may be critical Additional Database size - minor Customization Propagation / Impact Analysis True of any aggregate Complex logic will be more difficult E.g. #1: Financial Analytics uses snowflakes with multiple segment hierarchies E.g. #2: HR Workforce Event & Snapshot logic uses effective dates for future dated events 40

41 Q & A 41

42 Transform Data Into Insight Strategic Consulting Systems Implementation Training Staff built from Oracle/Siebel/Hyperion engineering teams On-site, off-shore and blended shore delivery models Exclusive pre-built solutions for Oracle BI & E-Business Suite Depot Repair Analytics Fixed Asset Analytics Manufacturing Analytics Student Info Analytics Subledger (SLA) Analytics and more Oracle BI Hyperion Endeca Exalytics Salesforce.com Analytics The Leader In Oracle BI & EPM 42

43 Contact Us Web: kpipartners.com/contact KPI World Headquarters Balentine Drive Suite #375 Newark, CA Phone: (510) North America Offices New York, NY Minneapolis, MN Chicago, IL San Diego, CA Boston, MA Greensboro, NC Global Offices Bangalore, India Hyderabad, India The Leader In Oracle BI & EPM 43

44 44

HR Analytics at Wells Fargo

HR Analytics at Wells Fargo HR Analytics at Wells Fargo Jeff McQuigg Ramesh Ponaganti Sept. 26, 2013 Oracle Open World, CON5792 Start Here KPI Partners Inc. Contact Us 510.818.9480 www.kpipartners.com Oracle s largest HR Analytics

More information

OBIEE DEVELOPER RESUME

OBIEE DEVELOPER RESUME 1 of 5 05/01/2015 13:14 OBIEE DEVELOPER RESUME Java Developers/Architects Resumes Please note that this is a not a Job Board - We are an I.T Staffing Company and we provide candidates on a Contract basis.

More information

Top 10 Performance Tips for OBI-EE

Top 10 Performance Tips for OBI-EE Top 10 Performance Tips for OBI-EE Narasimha Rao Madhuvarsu L V Bharath Terala October 2011 Apps Associates LLC Boston New York Atlanta Germany India Premier IT Professional Service and Solution Provider

More information

TRANSFORMING YOUR BUSINESS

TRANSFORMING YOUR BUSINESS September, 21 2012 TRANSFORMING YOUR BUSINESS PROCESS INTO DATA MODEL Prasad Duvvuri AST Corporation Agenda First Step Analysis Data Modeling End Solution Wrap Up FIRST STEP It Starts With.. What is the

More information

Optimizing the Performance of the Oracle BI Applications using Oracle Datawarehousing Features and Oracle DAC 10.1.3.4.1

Optimizing the Performance of the Oracle BI Applications using Oracle Datawarehousing Features and Oracle DAC 10.1.3.4.1 Optimizing the Performance of the Oracle BI Applications using Oracle Datawarehousing Features and Oracle DAC 10.1.3.4.1 Mark Rittman, Director, Rittman Mead Consulting for Collaborate 09, Florida, USA,

More information

MOC 20467B: Designing Business Intelligence Solutions with Microsoft SQL Server 2012

MOC 20467B: Designing Business Intelligence Solutions with Microsoft SQL Server 2012 MOC 20467B: Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Course Overview This course provides students with the knowledge and skills to design business intelligence solutions

More information

An Oracle BI and EPM Development Roadmap

An Oracle BI and EPM Development Roadmap An Oracle BI and EPM Development Roadmap Mark Rittman, Director, Rittman Mead UKOUG Financials SIG, September 2009 1 Who Am I? Oracle BI&W Architecture and Development Specialist Co-Founder of Rittman

More information

Cost Savings THINK ORACLE BI. THINK KPI. THINK ORACLE BI. THINK KPI. THINK ORACLE BI. THINK KPI.

Cost Savings THINK ORACLE BI. THINK KPI. THINK ORACLE BI. THINK KPI. THINK ORACLE BI. THINK KPI. THINK ORACLE BI. THINK KPI. THINK ORACLE BI. THINK KPI. MIGRATING FROM BUSINESS OBJECTS TO OBIEE KPI Partners is a world-class consulting firm focused 100% on Oracle s Business Intelligence technologies.

More information

Integrating Custom Sub-Ledgers with EBS Using BI Applications Financial Analytics. 03/09/2012 Jamie Adams, Laxmi Vara Prasad Duvvuri AST Corporation

Integrating Custom Sub-Ledgers with EBS Using BI Applications Financial Analytics. 03/09/2012 Jamie Adams, Laxmi Vara Prasad Duvvuri AST Corporation Integrating Custom Sub-Ledgers with EBS Using BI Applications Financial Analytics 03/09/2012 Jamie Adams, Laxmi Vara Prasad Duvvuri AST Corporation 1 Agenda Scenario Previous Options Proposed Solution/Approach

More information

Building a Custom Data Warehouse

Building a Custom Data Warehouse Building a Custom Data Warehouse Tom Connolly, BizTech Session #11976 Agenda Presentation Overview Project Methodology for the DDW Phase 1 Project Definition (Planning) Phase 2 Development Phase 3 Operational

More information

OBIEE 11g Data Modeling Best Practices

OBIEE 11g Data Modeling Best Practices OBIEE 11g Data Modeling Best Practices Mark Rittman, Director, Rittman Mead Oracle Open World 2010, San Francisco, September 2010 Introductions Mark Rittman, Co-Founder of Rittman Mead Oracle ACE Director,

More information

<Insert Picture Here> Extending Hyperion BI with the Oracle BI Server

<Insert Picture Here> Extending Hyperion BI with the Oracle BI Server Extending Hyperion BI with the Oracle BI Server Mark Ostroff Sr. BI Solutions Consultant Agenda Hyperion BI versus Hyperion BI with OBI Server Benefits of using Hyperion BI with the

More information

Oracle BI Suite Enterprise Edition

Oracle BI Suite Enterprise Edition Oracle BI Suite Enterprise Edition Optimising BI EE using Oracle OLAP and Essbase Antony Heljula Technical Architect Peak Indicators Limited Agenda Overview When Do You Need a Cube Engine? Example Problem

More information

LEARNING SOLUTIONS website milner.com/learning email training@milner.com phone 800 875 5042

LEARNING SOLUTIONS website milner.com/learning email training@milner.com phone 800 875 5042 Course 20467A: Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Length: 5 Days Published: December 21, 2012 Language(s): English Audience(s): IT Professionals Overview Level: 300

More information

Oracle BI 10g: Analytics Overview

Oracle BI 10g: Analytics Overview Oracle BI 10g: Analytics Overview Student Guide D50207GC10 Edition 1.0 July 2007 D51731 Copyright 2007, Oracle. All rights reserved. Disclaimer This document contains proprietary information and is protected

More information

How To Use Noetix

How To Use Noetix Using Oracle BI with Oracle E-Business Suite How to Meet Enterprise-wide Reporting Needs with OBI EE Using Oracle BI with Oracle E-Business Suite 2008-2010 Noetix Corporation Copying of this document is

More information

Oracle Business Intelligence Foundation Suite 11g Essentials Exam Study Guide

Oracle Business Intelligence Foundation Suite 11g Essentials Exam Study Guide Oracle Business Intelligence Foundation Suite 11g Essentials Exam Study Guide Joshua Jeyasingh Senior Technical Account Manager WW A&C Partner Enablement Objective & Audience Objective Help you prepare

More information

An Accenture Point of View. Oracle Exalytics brings speed and unparalleled flexibility to business analytics

An Accenture Point of View. Oracle Exalytics brings speed and unparalleled flexibility to business analytics An Accenture Point of View Oracle Exalytics brings speed and unparalleled flexibility to business analytics Keep your competitive edge with analytics When it comes to working smarter, organizations that

More information

Business Intelligence in Oracle Fusion Applications

Business Intelligence in Oracle Fusion Applications Business Intelligence in Oracle Fusion Applications Brahmaiah Yepuri Kumar Paloji Poorna Rekha Copyright 2012. Apps Associates LLC. 1 Agenda Overview Evolution of BI Features and Benefits of BI in Fusion

More information

Introducing Oracle Exalytics In-Memory Machine

Introducing Oracle Exalytics In-Memory Machine Introducing Oracle Exalytics In-Memory Machine Jon Ainsworth Director of Business Development Oracle EMEA Business Analytics 1 Copyright 2011, Oracle and/or its affiliates. All rights Agenda Topics Oracle

More information

Which Reporting Tool Should I Use for EPM? Glenn Schwartzberg InterRel Consulting info@interrel.com

Which Reporting Tool Should I Use for EPM? Glenn Schwartzberg InterRel Consulting info@interrel.com Which Reporting Tool Should I Use for EPM? Glenn Schwartzberg InterRel Consulting info@interrel.com Disclaimer These slides represent the work and opinions of the presenter and do not constitute official

More information

Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Course 20467A; 5 Days

Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Course 20467A; 5 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Designing Business Intelligence Solutions with Microsoft SQL Server 2012

More information

ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION

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

More information

POLAR IT SERVICES. Business Intelligence Project Methodology

POLAR IT SERVICES. Business Intelligence Project Methodology POLAR IT SERVICES Business Intelligence Project Methodology Table of Contents 1. Overview... 2 2. Visualize... 3 3. Planning and Architecture... 4 3.1 Define Requirements... 4 3.1.1 Define Attributes...

More information

How Are Oracle BI Analytics, Informatica, DAC, OBIEE, BI Publisher and Oracle EBusiness Suite R12 Blended Together

How Are Oracle BI Analytics, Informatica, DAC, OBIEE, BI Publisher and Oracle EBusiness Suite R12 Blended Together How Are Oracle BI Analytics, Informatica, DAC, OBIEE, BI Publisher and Oracle EBusiness Suite R12 Blended Together Dhananjay Papde Nov 2014 STRATEGIC FINANCIAL SYSTEMS PROGRAMME 1 Lead Specialist / Architect

More information

Designing a Dimensional Model

Designing a Dimensional Model Designing a Dimensional Model Erik Veerman Atlanta MDF member SQL Server MVP, Microsoft MCT Mentor, Solid Quality Learning Definitions Data Warehousing A subject-oriented, integrated, time-variant, and

More information

Oracle BI EE Implementation on Netezza. Prepared by SureShot Strategies, Inc.

Oracle BI EE Implementation on Netezza. Prepared by SureShot Strategies, Inc. Oracle BI EE Implementation on Netezza Prepared by SureShot Strategies, Inc. The goal of this paper is to give an insight to Netezza architecture and implementation experience to strategize Oracle BI EE

More information

MS 20467: Designing Business Intelligence Solutions with Microsoft SQL Server 2012

MS 20467: Designing Business Intelligence Solutions with Microsoft SQL Server 2012 MS 20467: Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Description: This five-day instructor-led course teaches students how to design and implement a BI infrastructure. The

More information

Lost in Space? Methodology for a Guided Drill-Through Analysis Out of the Wormhole

Lost in Space? Methodology for a Guided Drill-Through Analysis Out of the Wormhole Paper BB-01 Lost in Space? Methodology for a Guided Drill-Through Analysis Out of the Wormhole ABSTRACT Stephen Overton, Overton Technologies, LLC, Raleigh, NC Business information can be consumed many

More information

Fusion Applications Overview of Business Intelligence and Reporting components

Fusion Applications Overview of Business Intelligence and Reporting components Fusion Applications Overview of Business Intelligence and Reporting components This document briefly lists the components, their common acronyms and the functionality that they bring to Fusion Applications.

More information

<Insert Picture Here> Oracle Retail Data Model Overview

<Insert Picture Here> Oracle Retail Data Model Overview Oracle Retail Data Model Overview The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

More information

SAP HANA SAP s In-Memory Database. Dr. Martin Kittel, SAP HANA Development January 16, 2013

SAP HANA SAP s In-Memory Database. Dr. Martin Kittel, SAP HANA Development January 16, 2013 SAP HANA SAP s In-Memory Database Dr. Martin Kittel, SAP HANA Development January 16, 2013 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase

More information

Data Warehouse and Business Intelligence Testing: Challenges, Best Practices & the Solution

Data Warehouse and Business Intelligence Testing: Challenges, Best Practices & the Solution Warehouse and Business Intelligence : Challenges, Best Practices & the Solution Prepared by datagaps http://www.datagaps.com http://www.youtube.com/datagaps http://www.twitter.com/datagaps Contact contact@datagaps.com

More information

Migrating a Discoverer System to Oracle Business Intelligence Enterprise Edition

Migrating a Discoverer System to Oracle Business Intelligence Enterprise Edition Migrating a Discoverer System to Oracle Business Intelligence Enterprise Edition Milena Gerova President Bulgarian Oracle User Group mgerova@technologica.com Who am I Project Manager in TechnoLogica Ltd

More information

Contents Overview of Planning Your Implementation... 7 Critical Performance Factors... 11 Planning Process... 12 Physical Sizing...

Contents Overview of Planning Your Implementation... 7 Critical Performance Factors... 11 Planning Process... 12 Physical Sizing... P6 Analytics and P6 Reporting Database Planning and Sizing Guide Release 3.2 October 2013 Contents Overview of Planning Your Implementation... 7 About Oracle Primavera P6 Enterprise Project Portfolio

More information

SQL Server Analysis Services Complete Practical & Real-time Training

SQL Server Analysis Services Complete Practical & Real-time Training A Unit of Sequelgate Innovative Technologies Pvt. Ltd. ISO Certified Training Institute Microsoft Certified Partner SQL Server Analysis Services Complete Practical & Real-time Training Mode: Practical,

More information

Oracle Database 11g: SQL Tuning Workshop Release 2

Oracle Database 11g: SQL Tuning Workshop Release 2 Oracle University Contact Us: 1 800 005 453 Oracle Database 11g: SQL Tuning Workshop Release 2 Duration: 3 Days What you will learn This course assists database developers, DBAs, and SQL developers to

More information

Oracle Warehouse Builder 10g

Oracle Warehouse Builder 10g Oracle Warehouse Builder 10g Architectural White paper February 2004 Table of contents INTRODUCTION... 3 OVERVIEW... 4 THE DESIGN COMPONENT... 4 THE RUNTIME COMPONENT... 5 THE DESIGN ARCHITECTURE... 6

More information

BI Apps - Financial Analytics on JD Edwards

BI Apps - Financial Analytics on JD Edwards BI Apps - Financial Analytics on JD Edwards Overview, Implementation and Next Steps Tony Cassidy & Shaun Mullen June 2012 Peak Indicators Limited Agenda Introduction BI Apps - Overview BI Apps Financial

More information

Oracle Database 11g: SQL Tuning Workshop

Oracle Database 11g: SQL Tuning Workshop Oracle University Contact Us: + 38516306373 Oracle Database 11g: SQL Tuning Workshop Duration: 3 Days What you will learn This Oracle Database 11g: SQL Tuning Workshop Release 2 training assists database

More information

Super-Charged Oracle Business Intelligence with Essbase and SmartView

Super-Charged Oracle Business Intelligence with Essbase and SmartView Specialized. Recognized. Preferred. The right partner makes all the difference. Super-Charged Oracle Business Intelligence with Essbase and SmartView By: Gautham Sampath Pinellas County & Patrick Callahan

More information

BI4Dynamics provides rich business intelligence capabilities to companies of all sizes and industries. From the first day on you can analyse your

BI4Dynamics provides rich business intelligence capabilities to companies of all sizes and industries. From the first day on you can analyse your BI4Dynamics provides rich business intelligence capabilities to companies of all sizes and industries. From the first day on you can analyse your data quickly, accurately and make informed decisions. Spending

More information

SAS BI Course Content; Introduction to DWH / BI Concepts

SAS BI Course Content; Introduction to DWH / BI Concepts SAS BI Course Content; Introduction to DWH / BI Concepts SAS Web Report Studio 4.2 SAS EG 4.2 SAS Information Delivery Portal 4.2 SAS Data Integration Studio 4.2 SAS BI Dashboard 4.2 SAS Management Console

More information

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle University Contact Us: 1.800.529.0165 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

CHAPTER - 5 CONCLUSIONS / IMP. FINDINGS

CHAPTER - 5 CONCLUSIONS / IMP. FINDINGS CHAPTER - 5 CONCLUSIONS / IMP. FINDINGS In today's scenario data warehouse plays a crucial role in order to perform important operations. Different indexing techniques has been used and analyzed using

More information

SAP BO Course Details

SAP BO Course Details SAP BO Course Details By Besant Technologies Course Name Category Venue SAP BO SAP Besant Technologies No.24, Nagendra Nagar, Velachery Main Road, Address Velachery, Chennai 600 042 Landmark Opposite to

More information

Birds of a Feather Session: Best Practices for TimesTen on Exalytics

Birds of a Feather Session: Best Practices for TimesTen on Exalytics Birds of a Feather Session: Best Practices for TimesTen on Exalytics Chris Jenkins Senior Director, In-Memory Technology, Oracle Antony Heljula Technical Director, Peak Indicators Ltd. Mark Rittman CTO,

More information

COURSE OUTLINE. Track 1 Advanced Data Modeling, Analysis and Design

COURSE OUTLINE. Track 1 Advanced Data Modeling, Analysis and Design COURSE OUTLINE Track 1 Advanced Data Modeling, Analysis and Design TDWI Advanced Data Modeling Techniques Module One Data Modeling Concepts Data Models in Context Zachman Framework Overview Levels of Data

More information

Unlock your data for fast insights: dimensionless modeling with in-memory column store. By Vadim Orlov

Unlock your data for fast insights: dimensionless modeling with in-memory column store. By Vadim Orlov Unlock your data for fast insights: dimensionless modeling with in-memory column store By Vadim Orlov I. DIMENSIONAL MODEL Dimensional modeling (also known as star or snowflake schema) was pioneered by

More information

Implement a Data Warehouse with Microsoft SQL Server 20463C; 5 days

Implement a Data Warehouse with Microsoft SQL Server 20463C; 5 days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Implement a Data Warehouse with Microsoft SQL Server 20463C; 5 days Course

More information

Welcome to online seminar on. Oracle Agile PLM BI. Presented by: Rapidflow Apps Inc. January, 2011

Welcome to online seminar on. Oracle Agile PLM BI. Presented by: Rapidflow Apps Inc. January, 2011 Welcome to online seminar on Oracle Agile PLM BI Presented by: Rapidflow Apps Inc. January, 2011 Agenda Agile PLM BI Overview What is Agile BI? Who Needs Agile PLM BI? What does it offer? PLM Business

More information

Migrating Discoverer to OBIEE Lessons Learned. Presented By Presented By Naren Thota Infosemantics, Inc.

Migrating Discoverer to OBIEE Lessons Learned. Presented By Presented By Naren Thota Infosemantics, Inc. Migrating Discoverer to OBIEE Lessons Learned Presented By Presented By Naren Thota Infosemantics, Inc. Professional Background Partner/OBIEE Architect at Infosemantics, Inc. Experience with BI solutions

More information

Building Views and Charts in Requests Introduction to Answers views and charts Creating and editing charts Performing common view tasks

Building Views and Charts in Requests Introduction to Answers views and charts Creating and editing charts Performing common view tasks Oracle Business Intelligence Enterprise Edition (OBIEE) Training: Working with Oracle Business Intelligence Answers Introduction to Oracle BI Answers Working with requests in Oracle BI Answers Using advanced

More information

COURSE 20463C: IMPLEMENTING A DATA WAREHOUSE WITH MICROSOFT SQL SERVER

COURSE 20463C: IMPLEMENTING A DATA WAREHOUSE WITH MICROSOFT SQL SERVER Page 1 of 8 ABOUT THIS COURSE This 5 day course describes how to implement a data warehouse platform to support a BI solution. Students will learn how to create a data warehouse with Microsoft SQL Server

More information

Building a Hybrid Data Warehouse Model

Building a Hybrid Data Warehouse Model Page 1 of 13 Developer: Business Intelligence Building a Hybrid Data Warehouse Model by James Madison DOWNLOAD Oracle Database Sample Code TAGS datawarehousing, bi, All As suggested by this reference implementation,

More information

Implementing a Data Warehouse with Microsoft SQL Server

Implementing a Data Warehouse with Microsoft SQL Server Page 1 of 7 Overview This course describes how to implement a data warehouse platform to support a BI solution. Students will learn how to create a data warehouse with Microsoft SQL 2014, implement ETL

More information

Course Outline: Course: Implementing a Data Warehouse with Microsoft SQL Server 2012 Learning Method: Instructor-led Classroom Learning

Course Outline: Course: Implementing a Data Warehouse with Microsoft SQL Server 2012 Learning Method: Instructor-led Classroom Learning Course Outline: Course: Implementing a Data with Microsoft SQL Server 2012 Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40 hrs Overview: This 5-day instructor-led course describes

More information

BUSINESS INTELLIGENCE ANALYTICS QUALITY ASSURANCE- A NEW

BUSINESS INTELLIGENCE ANALYTICS QUALITY ASSURANCE- A NEW BUSINESS INTELLIGENCE ANALYTICS QUALITY ASSURANCE- A NEW FRAMEWORK FOR FASTER DELIVERY STC 2013 Anshika Goyal 1 and Suman Gopalan 2 Accenture Services Pvt Ltd. Bldg.No.1A and 1B Raheja Mind Space, Hitech

More information

Oracle BI Applications (BI Apps) is a prebuilt business intelligence solution.

Oracle BI Applications (BI Apps) is a prebuilt business intelligence solution. 1 2 Oracle BI Applications (BI Apps) is a prebuilt business intelligence solution. BI Apps supports Oracle sources, such as Oracle E-Business Suite Applications, Oracle's Siebel Applications, Oracle's

More information

Reflections on Agile DW by a Business Analytics Practitioner. Werner Engelen Principal Business Analytics Architect

Reflections on Agile DW by a Business Analytics Practitioner. Werner Engelen Principal Business Analytics Architect Reflections on Agile DW by a Business Analytics Practitioner Werner Engelen Principal Business Analytics Architect Introduction Werner Engelen Active in BI & DW since 1998 + 6 years at element61 Previously:

More information

White Paper April 2006

White Paper April 2006 White Paper April 2006 Table of Contents 1. Executive Summary...4 1.1 Scorecards...4 1.2 Alerts...4 1.3 Data Collection Agents...4 1.4 Self Tuning Caching System...4 2. Business Intelligence Model...5

More information

Oracle9i Data Warehouse Review. Robert F. Edwards Dulcian, Inc.

Oracle9i Data Warehouse Review. Robert F. Edwards Dulcian, Inc. Oracle9i Data Warehouse Review Robert F. Edwards Dulcian, Inc. Agenda Oracle9i Server OLAP Server Analytical SQL Data Mining ETL Warehouse Builder 3i Oracle 9i Server Overview 9i Server = Data Warehouse

More information

Report and Dashboard Template 9.5.1 User Guide

Report and Dashboard Template 9.5.1 User Guide Report and Dashboard Template 9.5.1 User Guide Introduction The Informatica Data Quality Reporting and Dashboard Template for Informatica Data Quality 9.5.1, is designed to provide you a framework to capture

More information

SQL Server 2012 Business Intelligence Boot Camp

SQL Server 2012 Business Intelligence Boot Camp SQL Server 2012 Business Intelligence Boot Camp Length: 5 Days Technology: Microsoft SQL Server 2012 Delivery Method: Instructor-led (classroom) About this Course Data warehousing is a solution organizations

More information

Oracle Daily Business Intelligence. PDF created with pdffactory trial version www.pdffactory.com

Oracle Daily Business Intelligence. PDF created with pdffactory trial version www.pdffactory.com Oracle Daily Business Intelligence User Reporting Requirements and Daily Business Intelligence Historical Business Analysts (Warehouse,see trends, drill from detailed information to summaries and back

More information

Extensibility of Oracle BI Applications

Extensibility of Oracle BI Applications Extensibility of Oracle BI Applications The Value of Oracle s BI Analytic Applications with Non-ERP Sources A White Paper by Guident Written - April 2009 Revised - February 2010 Guident Technologies, Inc.

More information

Oracle BI Cloud Service : What is it and Where Will it be Useful? Francesco Tisiot, Principal Consultant, Rittman Mead OUG Ireland 2015, Dublin

Oracle BI Cloud Service : What is it and Where Will it be Useful? Francesco Tisiot, Principal Consultant, Rittman Mead OUG Ireland 2015, Dublin Oracle BI Cloud Service : What is it and Where Will it be Useful? Francesco Tisiot, Principal Consultant, Rittman Mead OUG Ireland 2015, Dublin About the Speaker Francesco Tisiot Principal Consultant at

More information

Data warehouse and Business Intelligence Collateral

Data warehouse and Business Intelligence Collateral Data warehouse and Business Intelligence Collateral Page 1 of 12 DATA WAREHOUSE AND BUSINESS INTELLIGENCE COLLATERAL Brains for the corporate brawn: In the current scenario of the business world, the competition

More information

Oracle BI Applications. Can we make it worth the Purchase?

Oracle BI Applications. Can we make it worth the Purchase? Oracle BI Applications Can we make it worth the Purchase? Introduction Oracle Gold partner én Specialized Partner CRM On Demand, Oracle BI Applications. Oracle Business Solution partner Oracle s Siebel

More information

Apache Kylin Introduction Dec 8, 2014 @ApacheKylin

Apache Kylin Introduction Dec 8, 2014 @ApacheKylin Apache Kylin Introduction Dec 8, 2014 @ApacheKylin Luke Han Sr. Product Manager lukhan@ebay.com @lukehq Yang Li Architect & Tech Leader yangli9@ebay.com Agenda What s Apache Kylin? Tech Highlights Performance

More information

MicroStrategy Course Catalog

MicroStrategy Course Catalog MicroStrategy Course Catalog 1 microstrategy.com/education 3 MicroStrategy course matrix 4 MicroStrategy 9 8 MicroStrategy 10 table of contents MicroStrategy course matrix MICROSTRATEGY 9 MICROSTRATEGY

More information

Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence

Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence Appliances and DW Architectures John O Brien President and Executive Architect Zukeran Technologies 1 TDWI 1 Agenda What

More information

Performance and Scalability Overview

Performance and Scalability Overview Performance and Scalability Overview This guide provides an overview of some of the performance and scalability capabilities of the Pentaho Business Analytics Platform. Contents Pentaho Scalability and

More information

In-Memory Analytics: A comparison between Oracle TimesTen and Oracle Essbase

In-Memory Analytics: A comparison between Oracle TimesTen and Oracle Essbase In-Memory Analytics: A comparison between Oracle TimesTen and Oracle Essbase Agenda Introduction Why In-Memory? Options for In-Memory in Oracle Products - Times Ten - Essbase Comparison - Essbase Vs Times

More information

Best Practices for Hadoop Data Analysis with Tableau

Best Practices for Hadoop Data Analysis with Tableau Best Practices for Hadoop Data Analysis with Tableau September 2013 2013 Hortonworks Inc. http:// Tableau 6.1.4 introduced the ability to visualize large, complex data stored in Apache Hadoop with Hortonworks

More information

Data Warehouse in the Cloud Marketing or Reality? Alexei Khalyako Sr. Program Manager Windows Azure Customer Advisory Team

Data Warehouse in the Cloud Marketing or Reality? Alexei Khalyako Sr. Program Manager Windows Azure Customer Advisory Team Data Warehouse in the Cloud Marketing or Reality? Alexei Khalyako Sr. Program Manager Windows Azure Customer Advisory Team Data Warehouse we used to know High-End workload High-End hardware Special know-how

More information

Implementing a Data Warehouse with Microsoft SQL Server

Implementing a Data Warehouse with Microsoft SQL Server This course describes how to implement a data warehouse platform to support a BI solution. Students will learn how to create a data warehouse 2014, implement ETL with SQL Server Integration Services, and

More information

East Asia Network Sdn Bhd

East Asia Network Sdn Bhd Course: Analyzing, Designing, and Implementing a Data Warehouse with Microsoft SQL Server 2014 Elements of this syllabus may be change to cater to the participants background & knowledge. This course describes

More information

Exploring Oracle BI Apps: How it Works and What I Get NZOUG. March 2013

Exploring Oracle BI Apps: How it Works and What I Get NZOUG. March 2013 Exploring Oracle BI Apps: How it Works and What I Get NZOUG March 2013 Copyright This document is the property of James & Monroe Pty Ltd. Distribution of this document is limited to authorised personnel.

More information

"Must Know" Tips & Tricks for Oracle Business Intelligence 11g

Must Know Tips & Tricks for Oracle Business Intelligence 11g "Must Know" Tips & Tricks for Oracle Business Intelligence 11g Session ID#: 10488 Taking full advantage of what OBIEE and OBIFS has to offer Prepared by: Patrick Callahan AST Corporation VP, Business Intelligence

More information

TOP 10 TIPS AND TRICKS FOR ORACLE BUSINESS INTELLIGENCE SESSION #12061

TOP 10 TIPS AND TRICKS FOR ORACLE BUSINESS INTELLIGENCE SESSION #12061 TOP 10 TIPS AND TRICKS FOR ORACLE BUSINESS INTELLIGENCE SESSION #12061 Patrick Callahan AST Corporation Practice Director, Business Intelligence & EPM pcallahan@astcorporation.com www.astcorporation.com

More information

Data Warehouse design

Data Warehouse design Data Warehouse design Design of Enterprise Systems University of Pavia 11/11/2013-1- Data Warehouse design DATA MODELLING - 2- Data Modelling Important premise Data warehouses typically reside on a RDBMS

More information

DATA WAREHOUSE BUSINESS INTELLIGENCE FOR MICROSOFT DYNAMICS NAV

DATA WAREHOUSE BUSINESS INTELLIGENCE FOR MICROSOFT DYNAMICS NAV www.bi4dynamics.com DATA WAREHOUSE BUSINESS INTELLIGENCE FOR MICROSOFT DYNAMICS NAV True Data Warehouse built for content and performance. 100% Microsoft Stack. 100% customizable SQL code. 23 languages.

More information

Maximizing Your Storage Investment with the EMC Storage Inventory Dashboard

Maximizing Your Storage Investment with the EMC Storage Inventory Dashboard Maximizing Your Storage Investment with the EMC Storage Inventory Dashboard Glenn Thomas Senior Consultant t Copyright 2008 EMC Corporation. All rights reserved. Today s Agenda Complexity Of Today s Storage

More information

How, What, and Where of Data Warehouses for MySQL

How, What, and Where of Data Warehouses for MySQL How, What, and Where of Data Warehouses for MySQL Robert Hodges CEO, Continuent. Introducing Continuent The leading provider of clustering and replication for open source DBMS Our Product: Continuent Tungsten

More information

Microsoft Data Warehouse in Depth

Microsoft Data Warehouse in Depth Microsoft Data Warehouse in Depth 1 P a g e Duration What s new Why attend Who should attend Course format and prerequisites 4 days The course materials have been refreshed to align with the second edition

More information

Implementing Data Models and Reports with Microsoft SQL Server 20466C; 5 Days

Implementing Data Models and Reports with Microsoft SQL Server 20466C; 5 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Implementing Data Models and Reports with Microsoft SQL Server 20466C; 5

More information

Green Migration from Oracle

Green Migration from Oracle Green Migration from Oracle Greenplum Migration Approach Strong Experiences on Oracle Migration Automate all tasks DDL Migration Data Migration PL-SQL and SQL Scripts Migration Data Quality Tests ETL and

More information

Escape from Data Jail: Getting business value out of your data warehouse

Escape from Data Jail: Getting business value out of your data warehouse Escape from Data Jail: Getting business value out of your data warehouse Monica Woolmer, Catapult BI, (Formally Formation Data Pty Ltd) Does your organisation have data but struggle with providing effective

More information

Budgeting and Planning with Microsoft Excel and Oracle OLAP

Budgeting and Planning with Microsoft Excel and Oracle OLAP Copyright 2009, Vlamis Software Solutions, Inc. Budgeting and Planning with Microsoft Excel and Oracle OLAP Dan Vlamis and Cathye Pendley dvlamis@vlamis.com cpendley@vlamis.com Vlamis Software Solutions,

More information

Oracle BI Application: Demonstrating the Functionality & Ease of use. Geoffrey Francis Naailah Gora

Oracle BI Application: Demonstrating the Functionality & Ease of use. Geoffrey Francis Naailah Gora Oracle BI Application: Demonstrating the Functionality & Ease of use Geoffrey Francis Naailah Gora Agenda Oracle BI & BI Apps Overview Demo: Procurement & Spend Analytics Creating a ad-hoc report Copyright

More information

Salesforce.com and MicroStrategy. A functional overview and recommendation for analysis and application development

Salesforce.com and MicroStrategy. A functional overview and recommendation for analysis and application development Salesforce.com and MicroStrategy A functional overview and recommendation for analysis and application development About the Speaker Prittam Bagani Director, Product Management Prittam started working

More information

Implementing a Data Warehouse with Microsoft SQL Server MOC 20463

Implementing a Data Warehouse with Microsoft SQL Server MOC 20463 Implementing a Data Warehouse with Microsoft SQL Server MOC 20463 Course Outline Module 1: Introduction to Data Warehousing This module provides an introduction to the key components of a data warehousing

More information

COURSE OUTLINE MOC 20463: IMPLEMENTING A DATA WAREHOUSE WITH MICROSOFT SQL SERVER

COURSE OUTLINE MOC 20463: IMPLEMENTING A DATA WAREHOUSE WITH MICROSOFT SQL SERVER COURSE OUTLINE MOC 20463: IMPLEMENTING A DATA WAREHOUSE WITH MICROSOFT SQL SERVER MODULE 1: INTRODUCTION TO DATA WAREHOUSING This module provides an introduction to the key components of a data warehousing

More information

Oracle Utilities Mobile Workforce Management Business Intelligence

Oracle Utilities Mobile Workforce Management Business Intelligence Oracle Utilities Mobile Workforce Management Business Intelligence Metric Reference Guide Release 2.4.0.4 E35280-03 December 2012 Oracle Utilities Mobile Workforce Management Business Intelligence Metric

More information

<Insert Picture Here> The role of BI in your ERP and Performance Management Initiatives

<Insert Picture Here> The role of BI in your ERP and Performance Management Initiatives The role of BI in your ERP and Performance Management Initiatives Isabel Schuler-Calise, Principal Sales Consultant isabel.schuler-calise@oracle.com Zürich, 17. November 2011 The

More information

Establish and maintain Center of Excellence (CoE) around Data Architecture

Establish and maintain Center of Excellence (CoE) around Data Architecture Senior BI Data Architect - Bensenville, IL The Company s Information Management Team is comprised of highly technical resources with diverse backgrounds in data warehouse development & support, business

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012 MOC 10777

Implementing a Data Warehouse with Microsoft SQL Server 2012 MOC 10777 Implementing a Data Warehouse with Microsoft SQL Server 2012 MOC 10777 Course Outline Module 1: Introduction to Data Warehousing This module provides an introduction to the key components of a data warehousing

More information

Structure of the presentation

Structure of the presentation Integration of Legacy Data (SLIMS) and Laboratory Information Management System (LIMS) through Development of a Data Warehouse Presenter N. Chikobi 2011.06.29 Structure of the presentation Background Preliminary

More information

Scaling To Infinity: Partitioning Data Warehouses on Oracle Database. Thursday 15-November 2012 Tim Gorman www.evdbt.com

Scaling To Infinity: Partitioning Data Warehouses on Oracle Database. Thursday 15-November 2012 Tim Gorman www.evdbt.com NoCOUG Scaling To Infinity: Partitioning Data Warehouses on Oracle Database Thursday 15-November 2012 Tim Gorman www.evdbt.com NoCOUG Speaker Qualifications Co-author 1. Oracle8 Data Warehousing, 1998

More information