prem shanker sr. software engineer credit suisse introduction to business intelligence

75

Upload: darren-ryan

Post on 22-Dec-2015

212 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence
Page 2: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Prem ShankerSr. Software EngineerCredit Suisse

Introduction to Business Intelligence

Page 3: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Goals

• Learn about the concept of Data Warehousing and what BIDS offer.

• Learn about how to design and implement a Data Warehouse Dimensional database.

• Learn about what is a cube.• Learn about the SQL Server Analysis Services

Architecture• Learn what is new in Analysis Services 2008• Learn about what is a MDX Language.

Page 4: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

What BIDS can do?

SQL ServerData

Warehouse

SourceSystems/OLTP

Clients

Design the Populate Create Query Data Warehouse Data Warehouse OLAP Cubes Data

1 3 4

Query ToolsReportingAnalysis

2

Cubes

Analysis Services

Page 5: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Data Warehouse

• Table and Cube• Star Schema and Snowflake Schema• Fact Table and Dimension Table

Page 6: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Table vs Cube

A simplified example:

Product Region Sales $

Donut East 1

Donut West 2

Milk East 3

Milk West 4

A typical relational table Make it into a cube

Data are organized by rows Data are organized by intersections

East West Total

Donut 1 2 3

Milk 3 4 7

Total 4 6 10

Product dim

Region dimSales table

Page 7: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

The basic ingredients to make a cube

• Two kinds of table in a data warehouse DB1. fact table2. dimension tables.

• Question:1. Which one is a fact table and which one is a

dimension table?

Page 8: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Star Schema

• A Star Schema contains a fact table and one or more dimension tables. 1. A Fact Table: The central fact table store the

numeric fact (measures) such as Sales dollars, Costs, Unit Sales etc.

2. Dimension Tables: They surround the central fact table, and they store descriptive information about the measures

• The shape looks like a Star

Page 9: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Star schema

Page 10: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Snowflake Schema

Page 11: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Review: Data Warehouse Schemas

– The Data Warehouse is either a Star Schema or a Snowflake Schema:

• Fact tables that contain foreign keys and numeric measures• Dimension table contains the data describes the measures.

• The schema is ready for Analysis Services to build a cube.

Page 12: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Analysis Server

OLEDB

ADOMD .NET

AMOIIS

TCP

HTTP

XMLA

ADOMD

Client Apps

BIDS

SSMS

SSRS

Excel

Client Server Architecture

MOSS

Page 13: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

A Logical Cube - Example

Product

Region

West

East

South

North

1999 2000 2001 2002

Milk

Donut

Sandwich

Soda

Beer

North

South

East

West

Time

The Sales$ by Soda by West in Yr of 2001

Page 14: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Tools to connect to Cubes

• SQL Server Management Studio (SSMS)• Business Intelligence Development Studio (BIDS)• Query Analyzer (SSMS) – To write MDX• Excel 2007 – Uses MDX

Page 15: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Physical Cube- BIDS• Analysis Services Database• Unified Dimensional Model• Data Source connection• Data Source View• Dimensions• Cube Creation Wizard

Page 16: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Analysis Services Database

• An Analysis Services database is the top level container for other dependent objects:

• A database includes– Data Source– Data Source View– Cube– Dimension– Security Role

Page 17: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Creating an Analysis Services Database

• You can use one of the following to create a new empty database on an instance of SQL Server 2005 Analysis Services.– SQL Server Management Studio – Business Intelligence Development Studio.

Page 18: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Unified Dimensional Modeling

• Common Name: UDM• New feature Since AS 2005• Combine all Relational Sources in one

single environment. • A single data model, called Unified

Dimensional Model (UDM) over one or more physical data sources

Page 19: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Unified Dimensional Model - Concept

• The user needs to understand the particulars of each technology (e.g. the dialect of SQL used) to generate reports.

• Within one single Analysis Services, you can have more than one data sources to pull the data from.

Page 20: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Data Source Connection

• The data sources of your AS database is your Data Warehouse databases (SQL).

• It defines the connection string and authentication information for a database on an OLE DB data provider.

• You can use the Data Source Wizard to specify one or more data sources (SQLDB) for Analysis Services databases.

Page 21: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

The Functions of the Data Sources

• Integrate your Analysis Services databases with the data warehouses

• They are used for the following:– Processing the Cubes and dimensions– Data Retrieval if ROLAP or HOLAP is used as

the storage.– Write Back

Page 22: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Different Storage types of Cube

Page 23: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Data Sources connection to SQL Server

• For SQL Server, you can pick from the following providers:– OLE DB provider for SQL Server– SQL Native Client– .NET Provider/SqlClient Data Provider

– (Avoid using .NET data sources – OLEDB is faster for processing in practices)

Page 24: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Data Source Views• New feature Since AS 2005• A single unified view of the metadata (UDM) from specified

tables and views that the data source defines in the project. • It hides the physical implementation of the underlying data sources

from the reporting users.• Basic Data Layout for Cubes• Define Data Relationships• Can Leverage Multiple Data Sources• The key to effective cube design• Named Query As Objects – Not only Tables or Views

Page 25: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Demo

Page 26: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Dimension

• All dimensions are based on tables or views in a data source view. • All dimensions are shared since AS 2005• The structure of a dimension is largely driven by the structure of

the underlying dimension table or tables. • The simplest structure is called a star schema, which is where each

dimension is based on a single dimension table that is directly linked to the fact table by a primary key - foreign key relationship.

Page 27: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Dimension Consists of

• A dimension consists of:

–Attributes that describe the entity–User-Defined Hierarchies that

organize dimension members in meaningful ways

• such as Store Name Store City Store State Store Country

Page 28: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Attributes

• New feature since AS 2005• Containers of dimension members• Typically have one-many relationships between

attributes in the same dimension:– City State, – State Country, etc.– All attributes implicitly related to the key

Page 29: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

User Defined Hierarchies

• User Defined Hierarchies are created from Attributes

• Tree-like structureCity State Country All

• Provide navigation paths in a cube

Page 30: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Typical Example – Calendar Hierarchy• The Year, Quarter, and Month attributes are

used to construct a hierarchy, named Calendar, in the time dim.

• The relationship between the levels and members of the Calendar dimension (a regular dimension) is shown in the following diagram.

Page 31: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Measure Group

• In a cube, a measure is the set of values, usually numeric, that are based on a column in the fact table in the cube.

• A measure group contains one or more or all the measures from a single fact table. It can’t contain measures from different fact table.

Page 32: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Measure Group Advantages

• Measure groups provide the following advantages:– They can be partitioned and processed separately– They allows to include measures from diff fact

tables.– They are grouped by granularity: Same measure

group same granularity.– Security can be applied to specific measure groups

Page 33: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Cube

• A cube is defined by its measures and dimensions.

Page 34: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Inside a Cube

• Measures and Measure Groups• Dimensions Relationships• Calculations• Actions• Partitions• Perspectives

Page 35: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Demo

Page 36: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Dimension Design

• Different Dimension Relationships– Regular Dimension Relationship– Reference Dimension Relationship– Fact Dimension Relationship– Role Playing Dimension– Parent-Child Hierarchy

Page 37: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Regular Dimension Relationships • A traditional star schema design• The Primary Key in the dimension table joins

directly to Foreign Key in the fact table.

Page 38: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Reference Dimension Relationships

• Snowflake schema• A Reference dimension using columns from

multiple tables, or the dimension table links a dimension that is directly linked to the fact table.

Page 39: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Role Playing DimensionIt is used in a cube more than one time, each

time for a different purpose.• Each role-playing dimension is joined to a fact

table on a different foreign key. • Example, you might add a Time dimension to a cube three times

to track the times that

– products are ordered, – products are shipped,– Orders are due..

Page 40: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Parent-Child Hierarchy

• A parent-child hierarchy is a hierarchy in a standard dimension that contains a parent attribute. A parent attribute describes a self-join, within the same dimension table.

• Example: Employee Hierarchy An employee is an employee

who reports to his/her manager. His manager is an employee as well

Employee Key self joins to ParentEmployeeKey

Page 41: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Slowly Changing Dimension

• Some attribute values may change over time.• Two basic techniques:

– Type 1 change– Type 2 change

Page 42: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Slowly Changing Dimension – Type 1• A Type 1 change, is to simply overwrite the old value

with the new one.

Page 43: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Slowly Changing Dimension – Type 2• You create a new dimension row with the new

value and a new surrogate key, and mark the old row or timestamp as no longer in effect The fact table will use the new surrogate key to link new fact measurements

Page 44: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Calculated Member• A Calculated Members is a member of a

dimension or a measure group that is defined based on a MDX expression.

• The value for the member is calculated at runtime. The result values are not stored in the disk.

Page 45: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Calculated Member Properties

Page 46: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Named Set

• A named set is a MDX expression that returns a set of dimension members.

• You can define named sets and save them as part of the cube definition.

• It allows you to reuse the same named set throughout the cube.

• Typical example:– Create a list Top 10 customers based on Sales– You can reuse same Top 10 customers in diff

queries.

Page 47: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Best practices for Cube Design

• Use integer or numeric for key columns. • Avoid ROLAP storage mode, particular with

custom rollup or unary operators. MOLAP is the fastest storage structure in SSAS.

• Use parent-child dimensions prudently, especially those containing custom rollup and unary operators. No aggregation support in PC dimension.

Page 48: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Best practices for Cube Design (Contd..)

• Use role playing dimensions (e.g. OrderDate, BillDate, ShipDate) - avoids multiple physical copies. If the dimensions are base from the same physical table(s), use role playing dimensions.

Page 49: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

What's New (Analysis Services - Multidimensional Database)

• New Attribute Relationship designer. The dimension editor has a new Attribute Relationship designer that makes it easier to browse and modify attribute relationships.

• New AMO Warnings. These new warning messages alert users when they depart from design best practices or make logical errors in database design.

Page 50: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

What's New (Analysis Services - Multidimensional Database) • Backup and Restore Improvements • The backup and restore functionality in Analysis Services

has a new storage structure and enhanced performance in all backup and restore scenarios.

• Improved Storage Structure• The new storage structure provides a more robust

repository for the archived database. By using the new storage structure, there is no practical limit to the size of the database file, nor is there a limit to the number of files that a database can have.

• Improved Performance• The new backup and restore functionality achieves

increased performance. Tests on different sized databases and with various numbers of files have shown significant performance improvements.

Page 51: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

What's New (Analysis Services - Multidimensional Database) • Dynamic Management Views• Monitoring Connections, Sessions, and

CommandsDiscover_Connections, Discover_Sessions, and Discover_Commands.

• select * from $system.discover_connections

Page 52: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Fetching Data from Cube

• What Is MDX• Testing MDX with the Query Tool in SQL Server

Management Studio• The Basic Elements of an MDX Query

Page 53: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

What Is MDX

• An Extension of SQL Syntax That:– Queries and manipulates multidimensional

data in OLAP cubes

– Defines calculations based on information in the cube

– Defines and populates local cubes

• Not a True Extension – – Syntax Deviates Significantly from SQL

Page 54: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Testing MDX with Management Studio

Page 55: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Background

Select

on axis (x),

on axis (y),

on axis (z)

From [cubeName]

Page 56: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Components

BikesClothing

Sales Cost Units

Every cell has a name...

1999

2000

2001

1998

1997

Measures

Time

Products

Page 57: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Sales Cost Units

(Products.Bikes, Measures.Units, Time.[2000])

Every cell has a name...

1999

2000

2001

1998

1997

Measures

Time

Components

BikesClothing

Products

Page 58: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Sales Cost Units

(Products.Bikes, Measures.Units, Time.[2000])

(Products.Bikes, Measures.Sales, Time.[1999])

Every cell has a name...

1999

2000

2001

1998

1997

Measures

Time

Components

BikesClothing

Products

Page 59: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Sales Cost Units

What if I only specify this?(Products.Bikes, Measures.Units)

A Cell is referenced by all the dimensions

1999

2000

2001

1998

1997

Measures

Time

Components

BikesClothing

Products

Page 60: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Computer

PrinterMonitor

Sales Cost Units

What if I only specify this?(Products.Bikes, Measures.Units)If Time’s default member is [1997]Ans: (Products.Bikes, Measures.Units, Time.[1997])

Default Member

1999

2000

2001

1998

1997

Measures

Time

Products

Page 61: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

The Basic Elements of an MDX Query

Select{[Ship Date].[Calendar]} on columns,{[Product].[Product Categories]} on rows

from [Adventure Works]

Page 62: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Using Braces { }

• Braces Denote a Set• Braces Can be Omitted when the Set is

Unambiguous.• In SSAS 2005 / 2008:• SELECT

[Ship Date].[Calendar] ON COLUMNS, [Product].[Product Categories] ON ROWSFROM [Adventure Works]

In AS 2000:SELECT

{[Ship Date].[Calendar]} ON COLUMNS, {[Product].[Product Categories]} ON ROWS

FROM [Adventure Works]

Page 63: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Using Brackets [ ]

• Brackets Enclose a String Value• Necessary for:

– Field names with spaces: [New York], [Mary Lo]– Numbers as field names: [2007], [2008]

• Otherwise, the SSAS will treat them as numerous constants

Page 64: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Default Members

• Every Dimension has a Default Member– Usually the “All” member is the default

member.• Default Measures

– The measures dimension also has a default measure

– In our sample cube [Adventure Works], the default member for the cube is [Reseller Sales Amount]

Page 65: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Members

You want to query more than a single cell.Use Members functionMembers function returns the set of members in a dimension, level, or

hierarchy.select

[Ship Date].[Calendar] on columns,

[Product].[Product Categories].members on rows

from [Adventure Works]

Page 66: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Test Yourself: Number 1

[Ship Date].[Calendar] also has a membership; that is, it is made up of more granular information. Modify the query to return the membership of the [Ship Date].[Calendar]dimension.

select

[Ship Date].[Calendar] on columns,

[Product].[Product Categories].members on rows

from [Adventure Works]

Desired result:

Page 67: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Naming Additional Dimensions

Number Name

AXIS(0) COLUMNS

AXIS(1) ROWS

AXIS(2) PAGES

AXIS(3) SECTIONS

AXIS(4) CHAPTERS

Page 68: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

2004

[Ship Date].[Calendar]

2001 2002 2003

[Promotion].[Promotions]

No DiscuntReseller

Retrieving Data from a Cube

select

[Ship Date].[Calendar].[Calendar Year].[CY 2004] on axis(0),

[Promotion].[Promotions].[reseller] on axis(1)

from [Adventure Works]

Page 69: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Test Yourself: Number 2

• Modify the query to return the sales of Bikes with No Discount

select[Ship Date].[Calendar].[Calendar Year].[CY 2004] on axis(0),[Promotion].[Promotions].[reseller] on axis(1)from [Adventure Works]

Expect Result

Page 70: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Fully Qualified Names

• [CY 2001] below could be – [Delivery Date].[Calendar].[CY 2001] or– [Ship Date].[Calendar].[CY 2001]

select[CY 2001] on axis(0)from [Adventure Works]

• [Product].[Product Categories].[bikes] is the same as[Product].[Product Categories].[All Products].[bikes]

Page 71: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

2004[Ship Date].[Calendar]

2001 2002 2003Bikes

ComponentsClothing

[Product].[Product Categories]

Two Dimensions with Where Clause

select

[Ship Date].[Calendar].[Calendar Year].members on axis(0),

[Promotion].[Promotions].[reseller] on axis(1)

from [Adventure Works]

where [Product].[Product Categories].[bikes]

[Promotion].[Promotions]

No Discount

Reseller

Page 72: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Demo

• Lab MDX Query

Page 73: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Few Useful References

• www.microsoft.com/sqlserver/2008/en/us/analysis-services.aspx

• All BI WebCasts -http://www.microsoft.com/events/series/bi.aspx?tab=webcasts&id=all

• MDX References – msdn.microsoft.com/en-us/library/ms145506.aspx

Page 74: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence

Thank [email protected]

Page 75: Prem Shanker Sr. Software Engineer Credit Suisse Introduction to Business Intelligence