SlideShare a Scribd company logo
1 of 30
BUILDING YOUR FIRST ANALYSIS SERVICES
TABULAR BI SEMANTIC MODEL WITH SQL
SERVER 2012
Frederik Vandeputte
Partner @Kohera
President @SQLUG.BE
frederik.vandeputte@kohera.be
AGENDA
• Introduction
• Demo
• Wrap Up
ANALYSIS SERVICES: TODAY

      Broad adoption
      “Customers in the Magic Quadrant survey report that their Microsoft
      average deployment sizes are now larger than any other vendor in
      the survey in terms of users.”
      “Use of OLAP functionality by Microsoft customers is more than
      double that for the rest of the survey respondents.”

      Source: Gartner Magic Quadrant for BI Platforms, 2011


      Large ecosystem
      "Wide availability of skills is among the top reasons customers select Microsoft over competing vendors.”

      Source: Gartner Magic Quadrant for BI Platforms, 2011




      Highest rated infrastructure and development tools
      “Microsoft customers rate its BI platform infrastructure and development tools among the highest
      compared to other vendors, and a higher percentage of customers use them extensively.”

      Source: Gartner Magic Quadrant for BI Platforms, 2011

3
ANALYSIS SERVICES: TOMORROW
  Build on the strengths
                              Embrace the relational
  and success of Analysis
                              data model – well
  Services and expand its
                              understood by
  reach to a much
                              developers and IT Pros
  broader user base




  Bring together the
  relational and              Provide flexibility in the
  multidimensional            platform to suit the
  models under a single       diverse needs of BI
  unified BI platform –       applications
  best of both worlds!
BI SEMANTIC MODEL

                                One Model for all End User Experiences

             Client Tools
         Analytics, Reports, Scorecards,
          Dashboards, Custom Apps


    BI Semantic Model
                   Data model
                   Business logic                Personal BI               Team BI            Organizational BI
                   and queries                 PowerPivot for Excel   PowerPivot for SharePoint   Analysis Services

                   Data access


            Data Sources
   Databases, LOB Applications, OData Feeds,
            Spreadsheets, Text Files
BI SEMANTIC MODEL: ARCHITECTURE
       Third-party     Reporting                               SharePoint
                                         Excel   PowerPivot
       applications     Services                                Insights




        Databases     LOB Applications   Files   OData Feeds   Cloud Services
SO WHAT’S ANALYSIS SERVICES TABULAR ANYWAY

•   “Server Side version of PowerPivot v1”
•   Development in Visual Studio, not in Excel
•   Adding PowerPivot v2 features
•   Adding Enterprise features like
    •   security
    •   partitions
    •   management
    •   ...
WHAT’S NEW COMPARED TO POWERPIVOT V1
• Richer Models
  •   KPIs
  •   Descriptions
  •   Persisted formatting
  •   Advanced sorting
  •   Mark as Date Table
  •   Distinct count
  •   Drill-through
  •   Perspectives
  •   Hierarchies
  •   Multiple relationships
  •   Parent child
DEMO TIME
ABOUT THE DEMO
• Built a first SSAS Tabular model from scratch
• Enhance the model step by step
• Compare and highlight differences with PowerPivot and
  SSAS Multidimensioal (OLAP)
GETTING STARTED – 3 NEW OPTIONS
THE WORKSPACE DATABASE

•   Can be local or remote server
•   Holds in memory “development copy” of model
•   Databasename = ProjectName + username + GUID
•   Analyze in Excel connects to workspace DB
•   No need to redeploy to see changes in Excel or Cube browser
MEASURES MUST BE EXPLICITELY CREATED

• PowerPivot will create implicit measures when you drag a column
  to the values area in a pivot table
• Not possible in BISM (No_ measure defined)
• Like in SSAS OLAP – measures must be created explicitely
• Eeasiest way: AutoSum in SQL Data Tools
HIDE COLUMNS FROM CLIENT TOOLS

• Make your model user friendly
• Hide (surrogate) key columns
• Hide columns used in formulas
 • Hide SalesAmount
 • Sum of Sales Amount visible
DAX DATA ANALYSIS EXPRESSION
• DAX = Data Analysis Expressions
• Launched with PowerPivot
• DAX goals
    • Make data analysis really easy
    • Used relationships defined in PowerPivot/BISM model (no need for VLOOLUP)
•   Excel like Syntax
•   Support for +/- 80 Excel function
•   35 Built in Time Intelligence functions
•   + Additional functions
WHAT CAN WE DO WITH DAX
• Create caclulated columns
• Create calculated measures
• Define security in the model
• Query the BI Semantic Model
 • out of scope of this presentation
 • Power View uses DAX as a query language
CALCULATED COLUMNS
•   Just another column in a table
•   Similar to named calculations in SSAS OLAP Datasource views
•   Calculated after data has been loaded (cube processing)
•   Can be placed in colums, rows, filters and slicers
•   Evaluated in row context
•   Examples
    • [Amount] =[Qty] *[Price]
    • [Full Name]     = [First Name] & “ “ & [Last Name]
CALUCATED MEASURES
• Created in the measure grid
• Calculated “on the fly”
• Can only be placed in values area of PivotTables
• Evaluated in filter context
 • Rows/Columns/filters/Slicers
• Examples
 • [Sales]     = SUM (Sales[Amount])
 • [Average Sale] = AVERAGEX ( Sales, Sales[Amount])
DATE CALCULATIONS
• TOTALYTD function
  • Calculated Year To Date Values
  • SalesAmtYTD:=TOTALYTD(SUM(AutoSales[SalesAmount]);Dates[Date])




                                             WRONG RESULTS
CREATE A DATE DIMENSION
•   Mark Time Dimension Table as Date
•   Use data column from Time dimension in Calculations
•   Sort Columns By key column
•   Create Hierarchies (in Diagram view)


                        CORRECT RESULTS
KPIS
DAX EDITOR
• Code highlighting
• No intellisense
• Free download at http://daxeditor.codeplex.com/
NO DETECTION OF MISSING RELATIONSHIPS
• PowerPivot detects missing relationships
• No warning in SSAS Tabular
• Create relationships manual
PERSPECTIVES
SECURITY
PARTITIONS
MANAGEBILITY OF YOUR BISM CUBES
• Via SSMS
  •   Backup/Restore
  •   Script
  •   Deploy
  •   Partition and security Managements
• SSIS
  • Analysis Services Processing Task
• AMO/ADOMD/PowerShell
• Other tools
  • Deplyoment wizard, msbuild, source control, ..
CONCLUSIONS
• Tabular model vs traditional SSAS OLAP cubes
  • Easier learing curve
  • No MDX, but DAX
  • Not all SSAS OLAP features are available in BISM tabular
    o   SCOPE statements
    o   Write Back
    o   Native support for many to many dimensions
    o   ...
• Personal BI -> Team BI – Corporate BI
• PowerPivot for Excel  PowerPivot for Sharepoint  BISM
• Watch Kasper’s session tonight on Power View
SOME RESOURCES
• Blogs
  •   http://www.vandeputte.org (Frederik Vandeputte)
  •   http://www.powerpivotblog.nl/ (Kasper De Jonge)
  •   http://sqlblog.com/blogs/marco_russo/ (Marco Russo)
  •   http://sqlblog.com/blogs/alberto_ferrari/ (Alberto Ferrari)
  •   http://cathydumas.com/ (Cathy Dumas new)
  •   http://blogs.msdn.com/b/cathyk/ (Cathy Dumas old)
• Sites
  • http://social.technet.microsoft.com/wiki/contents/articles/277.powerpivot-
    overview.aspx (PowerPivot Wiki)
  • http://www.powerpivot-info.com/
  • www.sqlug.be
  • www.kohera.be
THANK YOU

More Related Content

What's hot

SSAS, MDX , Cube understanding, Browsing and Tools information
SSAS, MDX , Cube understanding, Browsing and Tools information SSAS, MDX , Cube understanding, Browsing and Tools information
SSAS, MDX , Cube understanding, Browsing and Tools information Vishal Pawar
 
Developing ssas cube
Developing ssas cubeDeveloping ssas cube
Developing ssas cubeSlava Kokaev
 
Dimensional modeling primer - SQL Saturday Madison - April 11th, 2015
Dimensional modeling primer - SQL Saturday Madison - April 11th, 2015Dimensional modeling primer - SQL Saturday Madison - April 11th, 2015
Dimensional modeling primer - SQL Saturday Madison - April 11th, 2015Terry Bunio
 
Data warehouse and ssas terms
Data warehouse and ssas termsData warehouse and ssas terms
Data warehouse and ssas termsKaran Gulati
 
Microsoft Power BI Overview
Microsoft Power BI OverviewMicrosoft Power BI Overview
Microsoft Power BI OverviewNetwoven Inc.
 
Intoduction to sql 2012 Tabular Modeling
Intoduction to sql 2012 Tabular ModelingIntoduction to sql 2012 Tabular Modeling
Intoduction to sql 2012 Tabular ModelingKaran Gulati
 
New features of sql server 2016 bi features
New features of sql server 2016 bi featuresNew features of sql server 2016 bi features
New features of sql server 2016 bi featuresChris Testa-O'Neill
 
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction Mark Ginnebaugh
 
Introduction to Cortana Analytics
Introduction to Cortana AnalyticsIntroduction to Cortana Analytics
Introduction to Cortana AnalyticsChris Testa-O'Neill
 
Make Your Decisions Smarter With Msbi
Make Your Decisions Smarter With MsbiMake Your Decisions Smarter With Msbi
Make Your Decisions Smarter With MsbiEdureka!
 
What's New in SQL Server 2016 for BI
What's New in SQL Server 2016 for BIWhat's New in SQL Server 2016 for BI
What's New in SQL Server 2016 for BITeo Lachev
 
Cepta The Future of Data with Power BI
Cepta The Future of Data with Power BICepta The Future of Data with Power BI
Cepta The Future of Data with Power BIKellyn Pot'Vin-Gorman
 
Leveraging Azure Analysis Services Tabular Data Models with Power BI by Tim M...
Leveraging Azure Analysis Services Tabular Data Models with Power BI by Tim M...Leveraging Azure Analysis Services Tabular Data Models with Power BI by Tim M...
Leveraging Azure Analysis Services Tabular Data Models with Power BI by Tim M...KTL Solutions
 
Power BI Report Server & Office Online Server
Power BI Report Server & Office Online ServerPower BI Report Server & Office Online Server
Power BI Report Server & Office Online ServerIsabelle Van Campenhoudt
 
OLAP – Creating Cubes with SQL Server Analysis Services
OLAP – Creating Cubes with SQL Server Analysis ServicesOLAP – Creating Cubes with SQL Server Analysis Services
OLAP – Creating Cubes with SQL Server Analysis ServicesPeter Gfader
 
Harnessing the power of both worlds
Harnessing the power of both worldsHarnessing the power of both worlds
Harnessing the power of both worldsKaran Gulati
 
Power BI Single Page Applications Boise Code Camp 2017
Power BI Single Page Applications Boise Code Camp 2017Power BI Single Page Applications Boise Code Camp 2017
Power BI Single Page Applications Boise Code Camp 2017Stuart
 
Microsoft PowerPivot & Power View in Excel 2013
Microsoft PowerPivot & Power View in Excel 2013Microsoft PowerPivot & Power View in Excel 2013
Microsoft PowerPivot & Power View in Excel 2013Mark Ginnebaugh
 

What's hot (20)

SSAS, MDX , Cube understanding, Browsing and Tools information
SSAS, MDX , Cube understanding, Browsing and Tools information SSAS, MDX , Cube understanding, Browsing and Tools information
SSAS, MDX , Cube understanding, Browsing and Tools information
 
Developing ssas cube
Developing ssas cubeDeveloping ssas cube
Developing ssas cube
 
Dimensional modeling primer - SQL Saturday Madison - April 11th, 2015
Dimensional modeling primer - SQL Saturday Madison - April 11th, 2015Dimensional modeling primer - SQL Saturday Madison - April 11th, 2015
Dimensional modeling primer - SQL Saturday Madison - April 11th, 2015
 
Data warehouse and ssas terms
Data warehouse and ssas termsData warehouse and ssas terms
Data warehouse and ssas terms
 
Microsoft Power BI Overview
Microsoft Power BI OverviewMicrosoft Power BI Overview
Microsoft Power BI Overview
 
Intoduction to sql 2012 Tabular Modeling
Intoduction to sql 2012 Tabular ModelingIntoduction to sql 2012 Tabular Modeling
Intoduction to sql 2012 Tabular Modeling
 
New features of sql server 2016 bi features
New features of sql server 2016 bi featuresNew features of sql server 2016 bi features
New features of sql server 2016 bi features
 
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
 
Introduction to Cortana Analytics
Introduction to Cortana AnalyticsIntroduction to Cortana Analytics
Introduction to Cortana Analytics
 
Make Your Decisions Smarter With Msbi
Make Your Decisions Smarter With MsbiMake Your Decisions Smarter With Msbi
Make Your Decisions Smarter With Msbi
 
SSAS and MDX
SSAS and MDXSSAS and MDX
SSAS and MDX
 
What's New in SQL Server 2016 for BI
What's New in SQL Server 2016 for BIWhat's New in SQL Server 2016 for BI
What's New in SQL Server 2016 for BI
 
Cepta The Future of Data with Power BI
Cepta The Future of Data with Power BICepta The Future of Data with Power BI
Cepta The Future of Data with Power BI
 
Leveraging Azure Analysis Services Tabular Data Models with Power BI by Tim M...
Leveraging Azure Analysis Services Tabular Data Models with Power BI by Tim M...Leveraging Azure Analysis Services Tabular Data Models with Power BI by Tim M...
Leveraging Azure Analysis Services Tabular Data Models with Power BI by Tim M...
 
From Excel hero to Power BI champion
From Excel hero to Power BI championFrom Excel hero to Power BI champion
From Excel hero to Power BI champion
 
Power BI Report Server & Office Online Server
Power BI Report Server & Office Online ServerPower BI Report Server & Office Online Server
Power BI Report Server & Office Online Server
 
OLAP – Creating Cubes with SQL Server Analysis Services
OLAP – Creating Cubes with SQL Server Analysis ServicesOLAP – Creating Cubes with SQL Server Analysis Services
OLAP – Creating Cubes with SQL Server Analysis Services
 
Harnessing the power of both worlds
Harnessing the power of both worldsHarnessing the power of both worlds
Harnessing the power of both worlds
 
Power BI Single Page Applications Boise Code Camp 2017
Power BI Single Page Applications Boise Code Camp 2017Power BI Single Page Applications Boise Code Camp 2017
Power BI Single Page Applications Boise Code Camp 2017
 
Microsoft PowerPivot & Power View in Excel 2013
Microsoft PowerPivot & Power View in Excel 2013Microsoft PowerPivot & Power View in Excel 2013
Microsoft PowerPivot & Power View in Excel 2013
 

Viewers also liked

Linux kursu-beylikduzu
Linux kursu-beylikduzuLinux kursu-beylikduzu
Linux kursu-beylikduzusersld67
 
MACROECONOMICS IN EXTINCTION : IMPACTS OF THE GLOBAL ECONOMIC CRISIS
 MACROECONOMICS  IN EXTINCTION :  IMPACTS OF THE GLOBAL ECONOMIC CRISIS  MACROECONOMICS  IN EXTINCTION :  IMPACTS OF THE GLOBAL ECONOMIC CRISIS
MACROECONOMICS IN EXTINCTION : IMPACTS OF THE GLOBAL ECONOMIC CRISIS Dr. Raju M. Mathew
 
Taking Control of the Digital and Mobile User Authentication Challenge
Taking Control of the Digital and Mobile User Authentication ChallengeTaking Control of the Digital and Mobile User Authentication Challenge
Taking Control of the Digital and Mobile User Authentication ChallengeEMC
 
2014 Reformation plays
2014 Reformation plays2014 Reformation plays
2014 Reformation playsTravis Klein
 
vCloud Air Network Has Arrived
vCloud Air Network Has ArrivedvCloud Air Network Has Arrived
vCloud Air Network Has ArrivedEMC
 
Insaat kursu-samsun
Insaat kursu-samsunInsaat kursu-samsun
Insaat kursu-samsunsersld54
 
คณิตศาสตร์
คณิตศาสตร์คณิตศาสตร์
คณิตศาสตร์jojowhisky
 
Insaat kursu-bahcelievler
Insaat kursu-bahcelievlerInsaat kursu-bahcelievler
Insaat kursu-bahcelievlersersld54
 
Metrographics
MetrographicsMetrographics
Metrographicstklubert
 
V mware sddc-micro-segmentation-white-paper
V mware sddc-micro-segmentation-white-paperV mware sddc-micro-segmentation-white-paper
V mware sddc-micro-segmentation-white-paperEMC
 
Misson Impossible 3 Trailer Analysis
Misson Impossible 3 Trailer AnalysisMisson Impossible 3 Trailer Analysis
Misson Impossible 3 Trailer AnalysisKhendle Christie
 

Viewers also liked (15)

Microsoft SQL Server Analysis Services Multidimensional
Microsoft SQL Server Analysis Services MultidimensionalMicrosoft SQL Server Analysis Services Multidimensional
Microsoft SQL Server Analysis Services Multidimensional
 
Linux kursu-beylikduzu
Linux kursu-beylikduzuLinux kursu-beylikduzu
Linux kursu-beylikduzu
 
MACROECONOMICS IN EXTINCTION : IMPACTS OF THE GLOBAL ECONOMIC CRISIS
 MACROECONOMICS  IN EXTINCTION :  IMPACTS OF THE GLOBAL ECONOMIC CRISIS  MACROECONOMICS  IN EXTINCTION :  IMPACTS OF THE GLOBAL ECONOMIC CRISIS
MACROECONOMICS IN EXTINCTION : IMPACTS OF THE GLOBAL ECONOMIC CRISIS
 
Organigrama
OrganigramaOrganigrama
Organigrama
 
Taking Control of the Digital and Mobile User Authentication Challenge
Taking Control of the Digital and Mobile User Authentication ChallengeTaking Control of the Digital and Mobile User Authentication Challenge
Taking Control of the Digital and Mobile User Authentication Challenge
 
2014 Reformation plays
2014 Reformation plays2014 Reformation plays
2014 Reformation plays
 
Toilet cleaner
Toilet cleanerToilet cleaner
Toilet cleaner
 
vCloud Air Network Has Arrived
vCloud Air Network Has ArrivedvCloud Air Network Has Arrived
vCloud Air Network Has Arrived
 
Insaat kursu-samsun
Insaat kursu-samsunInsaat kursu-samsun
Insaat kursu-samsun
 
I download
I downloadI download
I download
 
คณิตศาสตร์
คณิตศาสตร์คณิตศาสตร์
คณิตศาสตร์
 
Insaat kursu-bahcelievler
Insaat kursu-bahcelievlerInsaat kursu-bahcelievler
Insaat kursu-bahcelievler
 
Metrographics
MetrographicsMetrographics
Metrographics
 
V mware sddc-micro-segmentation-white-paper
V mware sddc-micro-segmentation-white-paperV mware sddc-micro-segmentation-white-paper
V mware sddc-micro-segmentation-white-paper
 
Misson Impossible 3 Trailer Analysis
Misson Impossible 3 Trailer AnalysisMisson Impossible 3 Trailer Analysis
Misson Impossible 3 Trailer Analysis
 

Similar to Building your first Analysis Services Tabular BI Semantic model with SQL Server 2012

Hitchhiker’s Guide to SharePoint BI
Hitchhiker’s Guide to SharePoint BIHitchhiker’s Guide to SharePoint BI
Hitchhiker’s Guide to SharePoint BIAndrew Brust
 
Microsoft BI reporting capabilities (on-prem solutions) Presentation
Microsoft BI reporting capabilities (on-prem solutions) PresentationMicrosoft BI reporting capabilities (on-prem solutions) Presentation
Microsoft BI reporting capabilities (on-prem solutions) Presentationjeromedoyen
 
Building Modern Data Platform with Microsoft Azure
Building Modern Data Platform with Microsoft AzureBuilding Modern Data Platform with Microsoft Azure
Building Modern Data Platform with Microsoft AzureDmitry Anoshin
 
Afternoons with Azure - Power BI and Azure Analysis Services
Afternoons with Azure - Power BI and Azure Analysis ServicesAfternoons with Azure - Power BI and Azure Analysis Services
Afternoons with Azure - Power BI and Azure Analysis ServicesCCG
 
SSAS Design & Incremental Processing - PASSMN May 2010
SSAS Design & Incremental Processing - PASSMN May 2010SSAS Design & Incremental Processing - PASSMN May 2010
SSAS Design & Incremental Processing - PASSMN May 2010Dan English
 
Preparing for BI in the Cloud with Windows Azure
Preparing for BI in the Cloud with Windows AzurePreparing for BI in the Cloud with Windows Azure
Preparing for BI in the Cloud with Windows AzurePerficient, Inc.
 
Introduction to SQL Server Analysis services 2008
Introduction to SQL Server Analysis services 2008Introduction to SQL Server Analysis services 2008
Introduction to SQL Server Analysis services 2008Tobias Koprowski
 
Extreme SSAS- SQL 2011
Extreme SSAS- SQL 2011Extreme SSAS- SQL 2011
Extreme SSAS- SQL 2011Itay Braun
 
Using Power BI and Azure as analytics engine for business applications
Using Power BI and Azure as analytics engine for business applicationsUsing Power BI and Azure as analytics engine for business applications
Using Power BI and Azure as analytics engine for business applicationsDigital Illustrated
 
Hybrid Analytics in Healthcare: Leveraging Power BI and Office 365 to Make Sm...
Hybrid Analytics in Healthcare: Leveraging Power BI and Office 365 to Make Sm...Hybrid Analytics in Healthcare: Leveraging Power BI and Office 365 to Make Sm...
Hybrid Analytics in Healthcare: Leveraging Power BI and Office 365 to Make Sm...Perficient, Inc.
 
SPS Vancouver 2018 - What is CDM and CDS
SPS Vancouver 2018 - What is CDM and CDSSPS Vancouver 2018 - What is CDM and CDS
SPS Vancouver 2018 - What is CDM and CDSNicolas Georgeault
 
Evolved BI with SQL Server 2012
Evolved BIwith SQL Server 2012Evolved BIwith SQL Server 2012
Evolved BI with SQL Server 2012Andrew Brust
 
Create Your First SQL Server Cubes
Create Your First SQL Server CubesCreate Your First SQL Server Cubes
Create Your First SQL Server CubesMark Kromer
 
Modern Business Intelligence and Advanced Analytics
Modern Business Intelligence and Advanced AnalyticsModern Business Intelligence and Advanced Analytics
Modern Business Intelligence and Advanced AnalyticsCollective Intelligence Inc.
 
RDX Insights Presentation - Microsoft Business Intelligence
RDX Insights Presentation - Microsoft Business IntelligenceRDX Insights Presentation - Microsoft Business Intelligence
RDX Insights Presentation - Microsoft Business IntelligenceChristopher Foot
 
Working with Microsoft Power Business Inteligence Tools - Presented by Atidan
Working with Microsoft Power Business Inteligence Tools - Presented by AtidanWorking with Microsoft Power Business Inteligence Tools - Presented by Atidan
Working with Microsoft Power Business Inteligence Tools - Presented by AtidanDavid J Rosenthal
 
A practical guidance of the enterprise machine learning
A practical guidance of the enterprise machine learning A practical guidance of the enterprise machine learning
A practical guidance of the enterprise machine learning Jesus Rodriguez
 

Similar to Building your first Analysis Services Tabular BI Semantic model with SQL Server 2012 (20)

Hitchhiker’s Guide to SharePoint BI
Hitchhiker’s Guide to SharePoint BIHitchhiker’s Guide to SharePoint BI
Hitchhiker’s Guide to SharePoint BI
 
Microsoft BI reporting capabilities (on-prem solutions) Presentation
Microsoft BI reporting capabilities (on-prem solutions) PresentationMicrosoft BI reporting capabilities (on-prem solutions) Presentation
Microsoft BI reporting capabilities (on-prem solutions) Presentation
 
Building Modern Data Platform with Microsoft Azure
Building Modern Data Platform with Microsoft AzureBuilding Modern Data Platform with Microsoft Azure
Building Modern Data Platform with Microsoft Azure
 
Afternoons with Azure - Power BI and Azure Analysis Services
Afternoons with Azure - Power BI and Azure Analysis ServicesAfternoons with Azure - Power BI and Azure Analysis Services
Afternoons with Azure - Power BI and Azure Analysis Services
 
SSAS Design & Incremental Processing - PASSMN May 2010
SSAS Design & Incremental Processing - PASSMN May 2010SSAS Design & Incremental Processing - PASSMN May 2010
SSAS Design & Incremental Processing - PASSMN May 2010
 
Preparing for BI in the Cloud with Windows Azure
Preparing for BI in the Cloud with Windows AzurePreparing for BI in the Cloud with Windows Azure
Preparing for BI in the Cloud with Windows Azure
 
Introduction to SQL Server Analysis services 2008
Introduction to SQL Server Analysis services 2008Introduction to SQL Server Analysis services 2008
Introduction to SQL Server Analysis services 2008
 
Bake-off Power BI
Bake-off Power BIBake-off Power BI
Bake-off Power BI
 
Extreme SSAS- SQL 2011
Extreme SSAS- SQL 2011Extreme SSAS- SQL 2011
Extreme SSAS- SQL 2011
 
Using Power BI and Azure as analytics engine for business applications
Using Power BI and Azure as analytics engine for business applicationsUsing Power BI and Azure as analytics engine for business applications
Using Power BI and Azure as analytics engine for business applications
 
Hybrid Analytics in Healthcare: Leveraging Power BI and Office 365 to Make Sm...
Hybrid Analytics in Healthcare: Leveraging Power BI and Office 365 to Make Sm...Hybrid Analytics in Healthcare: Leveraging Power BI and Office 365 to Make Sm...
Hybrid Analytics in Healthcare: Leveraging Power BI and Office 365 to Make Sm...
 
SPS Vancouver 2018 - What is CDM and CDS
SPS Vancouver 2018 - What is CDM and CDSSPS Vancouver 2018 - What is CDM and CDS
SPS Vancouver 2018 - What is CDM and CDS
 
Evolved BI with SQL Server 2012
Evolved BIwith SQL Server 2012Evolved BIwith SQL Server 2012
Evolved BI with SQL Server 2012
 
Taming the shrew Power BI
Taming the shrew Power BITaming the shrew Power BI
Taming the shrew Power BI
 
Create Your First SQL Server Cubes
Create Your First SQL Server CubesCreate Your First SQL Server Cubes
Create Your First SQL Server Cubes
 
SAP Business Objects Trianing
SAP Business Objects TrianingSAP Business Objects Trianing
SAP Business Objects Trianing
 
Modern Business Intelligence and Advanced Analytics
Modern Business Intelligence and Advanced AnalyticsModern Business Intelligence and Advanced Analytics
Modern Business Intelligence and Advanced Analytics
 
RDX Insights Presentation - Microsoft Business Intelligence
RDX Insights Presentation - Microsoft Business IntelligenceRDX Insights Presentation - Microsoft Business Intelligence
RDX Insights Presentation - Microsoft Business Intelligence
 
Working with Microsoft Power Business Inteligence Tools - Presented by Atidan
Working with Microsoft Power Business Inteligence Tools - Presented by AtidanWorking with Microsoft Power Business Inteligence Tools - Presented by Atidan
Working with Microsoft Power Business Inteligence Tools - Presented by Atidan
 
A practical guidance of the enterprise machine learning
A practical guidance of the enterprise machine learning A practical guidance of the enterprise machine learning
A practical guidance of the enterprise machine learning
 

More from Microsoft TechNet - Belgium and Luxembourg

More from Microsoft TechNet - Belgium and Luxembourg (20)

Windows 10: all you need to know!
Windows 10: all you need to know!Windows 10: all you need to know!
Windows 10: all you need to know!
 
Configuration Manager 2012 – Compliance Settings 101 - Tim de Keukelaere
Configuration Manager 2012 – Compliance Settings 101 - Tim de KeukelaereConfiguration Manager 2012 – Compliance Settings 101 - Tim de Keukelaere
Configuration Manager 2012 – Compliance Settings 101 - Tim de Keukelaere
 
Windows 8.1 a closer look
Windows 8.1 a closer lookWindows 8.1 a closer look
Windows 8.1 a closer look
 
So you’ve successfully installed SCOM… Now what.
So you’ve successfully installed SCOM… Now what.So you’ve successfully installed SCOM… Now what.
So you’ve successfully installed SCOM… Now what.
 
Data Leakage Prevention
Data Leakage PreventionData Leakage Prevention
Data Leakage Prevention
 
Deploying and managing ConfigMgr Clients
Deploying and managing ConfigMgr ClientsDeploying and managing ConfigMgr Clients
Deploying and managing ConfigMgr Clients
 
Self Service BI anno 2013 – Where Do We Come From and Where Are We Going?
Self Service BI anno 2013 – Where Do We Come From and Where Are We Going?Self Service BI anno 2013 – Where Do We Come From and Where Are We Going?
Self Service BI anno 2013 – Where Do We Come From and Where Are We Going?
 
Hands on with Hyper-V Clustering Maintenance Mode & Cluster Aware Updating
Hands on with Hyper-V Clustering Maintenance Mode & Cluster Aware UpdatingHands on with Hyper-V Clustering Maintenance Mode & Cluster Aware Updating
Hands on with Hyper-V Clustering Maintenance Mode & Cluster Aware Updating
 
SCEP 2012 inside SCCM 2012
SCEP 2012 inside SCCM 2012SCEP 2012 inside SCCM 2012
SCEP 2012 inside SCCM 2012
 
Jump start your application monitoring with APM
Jump start your application monitoring with APMJump start your application monitoring with APM
Jump start your application monitoring with APM
 
What’s new in Lync Server 2013: Persistent Chat
What’s new in Lync Server 2013: Persistent ChatWhat’s new in Lync Server 2013: Persistent Chat
What’s new in Lync Server 2013: Persistent Chat
 
What's new for Lync 2013 Clients & Devices
What's new for Lync 2013 Clients & DevicesWhat's new for Lync 2013 Clients & Devices
What's new for Lync 2013 Clients & Devices
 
Office 365 ProPlus: Click-to-run deployment and management
Office 365 ProPlus: Click-to-run deployment and managementOffice 365 ProPlus: Click-to-run deployment and management
Office 365 ProPlus: Click-to-run deployment and management
 
Office 365 Identity Management options
Office 365 Identity Management options Office 365 Identity Management options
Office 365 Identity Management options
 
SharePoint Installation and Upgrade: Untangling Your Options
SharePoint Installation and Upgrade: Untangling Your Options SharePoint Installation and Upgrade: Untangling Your Options
SharePoint Installation and Upgrade: Untangling Your Options
 
The application model in real life
The application model in real lifeThe application model in real life
The application model in real life
 
Microsoft private cloud with Cisco and Netapp - Flexpod solution
Microsoft private cloud with Cisco and Netapp -  Flexpod solutionMicrosoft private cloud with Cisco and Netapp -  Flexpod solution
Microsoft private cloud with Cisco and Netapp - Flexpod solution
 
Managing Windows RT devices in the Enterprise
Managing Windows RT devices in the Enterprise Managing Windows RT devices in the Enterprise
Managing Windows RT devices in the Enterprise
 
Moving from Device Centric to a User Centric Management
Moving from Device Centric to a User Centric Management Moving from Device Centric to a User Centric Management
Moving from Device Centric to a User Centric Management
 
Network Management in System Center 2012 SP1 - VMM
Network Management in System Center 2012  SP1 - VMM Network Management in System Center 2012  SP1 - VMM
Network Management in System Center 2012 SP1 - VMM
 

Recently uploaded

TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 

Recently uploaded (20)

TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 

Building your first Analysis Services Tabular BI Semantic model with SQL Server 2012

  • 1. BUILDING YOUR FIRST ANALYSIS SERVICES TABULAR BI SEMANTIC MODEL WITH SQL SERVER 2012 Frederik Vandeputte Partner @Kohera President @SQLUG.BE frederik.vandeputte@kohera.be
  • 3. ANALYSIS SERVICES: TODAY Broad adoption “Customers in the Magic Quadrant survey report that their Microsoft average deployment sizes are now larger than any other vendor in the survey in terms of users.” “Use of OLAP functionality by Microsoft customers is more than double that for the rest of the survey respondents.” Source: Gartner Magic Quadrant for BI Platforms, 2011 Large ecosystem "Wide availability of skills is among the top reasons customers select Microsoft over competing vendors.” Source: Gartner Magic Quadrant for BI Platforms, 2011 Highest rated infrastructure and development tools “Microsoft customers rate its BI platform infrastructure and development tools among the highest compared to other vendors, and a higher percentage of customers use them extensively.” Source: Gartner Magic Quadrant for BI Platforms, 2011 3
  • 4. ANALYSIS SERVICES: TOMORROW Build on the strengths Embrace the relational and success of Analysis data model – well Services and expand its understood by reach to a much developers and IT Pros broader user base Bring together the relational and Provide flexibility in the multidimensional platform to suit the models under a single diverse needs of BI unified BI platform – applications best of both worlds!
  • 5. BI SEMANTIC MODEL One Model for all End User Experiences Client Tools Analytics, Reports, Scorecards, Dashboards, Custom Apps BI Semantic Model Data model Business logic Personal BI Team BI Organizational BI and queries PowerPivot for Excel PowerPivot for SharePoint Analysis Services Data access Data Sources Databases, LOB Applications, OData Feeds, Spreadsheets, Text Files
  • 6. BI SEMANTIC MODEL: ARCHITECTURE Third-party Reporting SharePoint Excel PowerPivot applications Services Insights Databases LOB Applications Files OData Feeds Cloud Services
  • 7. SO WHAT’S ANALYSIS SERVICES TABULAR ANYWAY • “Server Side version of PowerPivot v1” • Development in Visual Studio, not in Excel • Adding PowerPivot v2 features • Adding Enterprise features like • security • partitions • management • ...
  • 8. WHAT’S NEW COMPARED TO POWERPIVOT V1 • Richer Models • KPIs • Descriptions • Persisted formatting • Advanced sorting • Mark as Date Table • Distinct count • Drill-through • Perspectives • Hierarchies • Multiple relationships • Parent child
  • 10. ABOUT THE DEMO • Built a first SSAS Tabular model from scratch • Enhance the model step by step • Compare and highlight differences with PowerPivot and SSAS Multidimensioal (OLAP)
  • 11. GETTING STARTED – 3 NEW OPTIONS
  • 12. THE WORKSPACE DATABASE • Can be local or remote server • Holds in memory “development copy” of model • Databasename = ProjectName + username + GUID • Analyze in Excel connects to workspace DB • No need to redeploy to see changes in Excel or Cube browser
  • 13. MEASURES MUST BE EXPLICITELY CREATED • PowerPivot will create implicit measures when you drag a column to the values area in a pivot table • Not possible in BISM (No_ measure defined) • Like in SSAS OLAP – measures must be created explicitely • Eeasiest way: AutoSum in SQL Data Tools
  • 14. HIDE COLUMNS FROM CLIENT TOOLS • Make your model user friendly • Hide (surrogate) key columns • Hide columns used in formulas • Hide SalesAmount • Sum of Sales Amount visible
  • 15. DAX DATA ANALYSIS EXPRESSION • DAX = Data Analysis Expressions • Launched with PowerPivot • DAX goals • Make data analysis really easy • Used relationships defined in PowerPivot/BISM model (no need for VLOOLUP) • Excel like Syntax • Support for +/- 80 Excel function • 35 Built in Time Intelligence functions • + Additional functions
  • 16. WHAT CAN WE DO WITH DAX • Create caclulated columns • Create calculated measures • Define security in the model • Query the BI Semantic Model • out of scope of this presentation • Power View uses DAX as a query language
  • 17. CALCULATED COLUMNS • Just another column in a table • Similar to named calculations in SSAS OLAP Datasource views • Calculated after data has been loaded (cube processing) • Can be placed in colums, rows, filters and slicers • Evaluated in row context • Examples • [Amount] =[Qty] *[Price] • [Full Name] = [First Name] & “ “ & [Last Name]
  • 18. CALUCATED MEASURES • Created in the measure grid • Calculated “on the fly” • Can only be placed in values area of PivotTables • Evaluated in filter context • Rows/Columns/filters/Slicers • Examples • [Sales] = SUM (Sales[Amount]) • [Average Sale] = AVERAGEX ( Sales, Sales[Amount])
  • 19. DATE CALCULATIONS • TOTALYTD function • Calculated Year To Date Values • SalesAmtYTD:=TOTALYTD(SUM(AutoSales[SalesAmount]);Dates[Date]) WRONG RESULTS
  • 20. CREATE A DATE DIMENSION • Mark Time Dimension Table as Date • Use data column from Time dimension in Calculations • Sort Columns By key column • Create Hierarchies (in Diagram view) CORRECT RESULTS
  • 21. KPIS
  • 22. DAX EDITOR • Code highlighting • No intellisense • Free download at http://daxeditor.codeplex.com/
  • 23. NO DETECTION OF MISSING RELATIONSHIPS • PowerPivot detects missing relationships • No warning in SSAS Tabular • Create relationships manual
  • 27. MANAGEBILITY OF YOUR BISM CUBES • Via SSMS • Backup/Restore • Script • Deploy • Partition and security Managements • SSIS • Analysis Services Processing Task • AMO/ADOMD/PowerShell • Other tools • Deplyoment wizard, msbuild, source control, ..
  • 28. CONCLUSIONS • Tabular model vs traditional SSAS OLAP cubes • Easier learing curve • No MDX, but DAX • Not all SSAS OLAP features are available in BISM tabular o SCOPE statements o Write Back o Native support for many to many dimensions o ... • Personal BI -> Team BI – Corporate BI • PowerPivot for Excel  PowerPivot for Sharepoint  BISM • Watch Kasper’s session tonight on Power View
  • 29. SOME RESOURCES • Blogs • http://www.vandeputte.org (Frederik Vandeputte) • http://www.powerpivotblog.nl/ (Kasper De Jonge) • http://sqlblog.com/blogs/marco_russo/ (Marco Russo) • http://sqlblog.com/blogs/alberto_ferrari/ (Alberto Ferrari) • http://cathydumas.com/ (Cathy Dumas new) • http://blogs.msdn.com/b/cathyk/ (Cathy Dumas old) • Sites • http://social.technet.microsoft.com/wiki/contents/articles/277.powerpivot- overview.aspx (PowerPivot Wiki) • http://www.powerpivot-info.com/ • www.sqlug.be • www.kohera.be

Editor's Notes

  1. PowerPivot is new, self-service BI, relationship with AnalysisMature product, been out there since SQL 7.0, 5 major releases, Denali will be the Leading OLAP server, rich ecosystem of partners and ISVsUnprecedented scale, going beyond the traditional scope of BI applications
  2. Where do we want to take this product. Multi-release, multi-year vision for the productSometimes you want fast time to solution, sometimes you want complex calculations and huge scaleBISM is the name we give to Analysis Services that encompasses these goals
  3. Carry forward the existing ecosystem of client applicationsLook a bit deeper into the conceptual architectureCall out PowerPivot as a clientMDX versus DAXData access: cache the data or pass it through Vertipaq new in-memorycolunmstore, compression, blazing fast perf. No aggregations or tuning. Same as PowerPivot for Excel and SharePoint.