Sales Dim Date Dim Customers Dim Products Dim Categories Dim Geography The data warehouse is a simple and standard one, after all we.

Slides:



Advertisements
Similar presentations
2012 © Trivadis BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN Welcome November 2012 Highlights BI.
Advertisements

Business Intelligence Simon Pease. Experience with BI Developing end-to-end BI prototype for Plan International Developing end-to-end BI prototype for.
Power BI Rafal Lukawiecki Strategic Consultant Project Botticelli Ltd
OLAP Services Business Intelligence Solutions. Agenda Definition of OLAP Types of OLAP Definition of Cube Definition of DMR Differences between Cube and.
Jennifer Widom On-Line Analytical Processing (OLAP) Introduction.
Using Measures. Types of Measures Additive – A Measure Where the Value of a Member Is the Sum of Its Children At Any Level of Any Dimension Amount Units.
Spatial data warehouses and SOLAP: a new GIS technology Geosciences, mapping day Jean-Paul KASPRZYK, phd student.
Data Cube and OLAP Server
Business Intelligence. On-Line Analytical Processing (OLAP) Tools The use of a set of graphical tools that provides users with multidimensional views.
CSE6011 Warehouse Models & Operators  Data Models  relations  stars & snowflakes  cubes  Operators  slice & dice  roll-up, drill down  pivoting.
Introduction to Building a BI Solution 권오주 OLAPForum
Introduction to OLAP cubes My name: ZULFIQAR SYED Holds BSEE from Illinois Institute of Technology, Chicago, ILLINOIS. Holds BSEE from Illinois Institute.
Introduction Paul Turley SqlServerBiBlog.com Mentor, SQL Server MVP
Building a Data Warehouse with SQL Server Presented by John Sterrett.
Vs. OLAP. Geography heirarchy Sales campaigns Other dimension Products Time Sales, profit, costs, key numbers, etc. Sales organization Star Scheme.
Data Warehouse to BI 1. Agenda  Review  Preparing the DW for Analysis  Microsoft BI Platform Overview  Building a Cube in SSAS 2.
DATA WAREHOUSING IN SQL SERVER 2005/2008 BUSINESS INTELLIGENCE.
Data Warehousing at STC MSIS 2007 Geneva, May 8-10, 2007 Karen Doherty Director General Informatics Branch Statistics Canada.
IMS 6217: Data Warehousing / Business Intelligence Part 3 1 Dr. Lawrence West, Management Dept., University of Central Florida Analysis.
What is SQL and Who uses it? Presented by: John Deardurff Global McOWL Internal Sales Training October 24, 2014.
Activity Running Time DurationIntro0 2 min Setup scenario 2 2 min SQL BI components & concepts 4 5 min Data input (Let’s go shopping) 9 7 min Whiteboard.
Vidas Matelis, Toronto SQL Server User Group November 13, 2008.
+ Administering Microsoft SQL Server 2012 Databases Implementing a Data Warehouse with Microsoft SQL Server = Querying Microsoft SQL.
MDX in SQL Server 2008 Szymon Wilk (na podstawie materiałów przygotowanych przez Krzysztofa Dembczyńskiego) TWO, 2009/10.
Business Intelligence Zamaneh Jahed. What is Business Intelligence? Business Intelligence (BI) is a broad category of applications and technologies for.
Business Intelligence Software Business Intelligence A Software at your size.
Part Two: - The use of views. 1. Topics What is a View? Why Views are useful in Data Warehousing? Understand Materialised Views Understand View Maintenance.
Data Warehousing.
BI Terminologies.
Peer to Peer | Greater Scale | More Voices | Faster AXUG Summit 2011 RPT07: Understanding PowerPivot Noah Kluge—PrecisionPoint Software.
TechEd /24/2017 9:33 PM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
1 On-Line Analytic Processing Warehousing Data Cubes.
Decision supports Systems Components
OLAP On Line Analytic Processing. OLTP On Line Transaction Processing –support for ‘real-time’ processing of orders, bookings, sales –typically access.
Centre of Competence on data warehouse Workshop Helsinki Database Cube and Browsing the Cube Mark Rantala.
SQL Server Analysis Services 2012 BI Semantic Model BISM.
2012 © Trivadis BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN Welcome November 2012 Columnstore Indexes.
Data Warehousing.
11 SAP & SQL Server 2005 Analysis Services Integration Microsoft Corporation SAP-Microsoft Competence Center (Tokyo) Microsoft Corporation SAP-Microsoft.
Cube Measure Group Measure Partition Cube Dimension Dimension Attribute Attribute Relationship Hierarchy Level Cube Attribute Cube Hierarchy.
Pindaro Demertzoglou Data Resource Management – MGMT 4170 Lally School of Management Rensselaer Polytechnic Institute.
Or How I Learned to Love the Cube…. Alexander P. Nykolaiszyn BLOG:
The Concepts of Business Intelligence Microsoft® Business Intelligence Solutions.
Develop Business Intelligence Application with Microsoft SharePoint 2013 Author: Vo Duy Anh.
Extending and Creating Dynamics AX OLAP Cubes
Programming Patterns with BISM Tabular
SQL Server Analysis Services Fundamentals
LSI Business Intelligence Initiative
Introduction to SQL Server Analysis Services
On-Line Analytic Processing
Treasures for Microsoft Business Intelligence, Found on CodePlex
Applying Data Warehouse Techniques
What is business intelligence?
Business Intelligence
Introduction to SQL Server Analysis Services
On-Line Analytical Processing (OLAP)
SQL Server Analysis Services Fundamentals
SQL Server Analysis Services Fundamentals
Implementing Data Models & Reports with Microsoft SQL Server
Enhance BI Applications and Simplify Development
How EMI Music Implemented Master Data Services with Adatis
Applying Data Warehouse Techniques
TechEd /3/2018 7:58 PM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
Module 7: Working with Measures and Measure Groups
Applying Data Warehouse Techniques
SQL Server Reporting Services 2017 on Steroids!!
Applying Data Warehouse Techniques
Analysis Services Analysis Services vs. the Data Warehouse vs. OLTP DB
Applying Data Warehouse Techniques
Presentation transcript:

Sales Dim Date Dim Customers Dim Products Dim Categories Dim Geography The data warehouse is a simple and standard one, after all we will build everything in an hour…

ClassPercentage A (few products)70% B (some products)20% C (many products)10% GRAND TOTAL100%

SUM( Amount) GROUP BY Product INTO #temp UPDATE #temp SET Percentage = RunningTotal on Product Amount / SUM( Amount ) UPDATE product SET Class = A/B/C (from #temp) SQL

Process Sales cube MDX query on Sales cube to extract ABC Class UPDATE product SET Class = A/B/C from MDX query Requires ETL or Linked Server Process Product Dimension Update Sales aggregations (ABC flexible attribute) SQL OLAP OLAP OLAP

DBI-B225: Microsoft “Data Explorer” for Excel DBI-B315: Querying in DAX