SSAS – make cube in 5 minutes

To support my current database team with additional database skills I decided to start some series focused on BI area. This POST describes quick start with Analysis Services – Multidimensional Databases.

I already wrote post regarding Analysis Services (Create SSAS database) and its settings for multidimensional mode. What should be prepared in advance are some relation data (Adventure Works) and Data Tools studio supporting Analysis Services. You can find in my previous post.

GOAL:

Let’s make a simple cube including 1 measure and 2 dimensions.

In short:

  1. Let’s create new project first – Multidimensional SSASCreate Analysis Services Database
  2. Create Data Sources
  3. Create Data Source View
  4. Create Dimensions
  5. Create CUBE
    1. Define measures
    2. Create dimension relationships
  6. Deploy solution to server
  7. To be continued

Create Analysis Services Multidimensional and Data Mining project first.

New project
New project

Define Data Sources. In our case, there is one Data Source to relation database. There could be defined more Data Sources from different connections. In Solution Explorer, right click on Data Sources section and click on New Data Source, define connection info in dialog box and confirm to create Data Source. Solution Explorer with defined Data Source should look like on picture bellow.

Solution explorer Data Source
Solution explorer Data Source

As next step we must define objects for logical database model. Right click on Data Source Views section in Solution explorer and click on new Data Source Views and Wizard to create Data Source Views appears. Select Data Source in next window, Adventure Works DW in our case and you should see dialog with list of objects form your Data Source on left side. Choose objects for your data model and continue with next.

Data Source Wizard
Data Source Wizard

After selection you should have chosen objects on the right side of Select Tables and Views window. We selected DimCustomer, FactInternetSales and DimDate in our case.

Data Source View Wizard
Data Source View Wizard

As last step name Data source View and Data Source View Wizard is finished.

Data Source View Wizard
Data Source View Wizard

In case you have relational layer defined with referential integrity, it should be transferred to the Data Source View. In case that primary and foreign keys are missing you can create logical relationships between tables in Data Source Views. It is possible to create more Data Source Views, in case you have lots of database objects it is good practice to split them according to their logical area.

When above mentioned steps are done you can see the same Solution Explorer as on picture bellow.

Solution explorer - Data Source View
Solution explorer – Data Source View

Let’s check data model in Data Source Views on picture bellow. You can see that relationships were created according to relation layer by default.

Data Source View - model
Data Source View – model

To create our cube, we use Cube Wizard where measures and dimensions are defined.

Cube Wizard
Cube Wizard

To speed up our process, check Use existing tables. In next window, select Fact table to define measures. You can click on Suggest button to check it automatically (based on defined Data Source View).

Cube Wizard - measure
Cube Wizard – measure

To finish Cube Wizard choose dimensions you use in the cube.

Cube Wizard - dimension
Cube Wizard – dimension

Now you should see created Cube and Dimensions in Solution explorer.

By double click on cube you see cube structure work space, with information regarding Measures, Dimensions, Data Source View etc.

Cube structure
Cube structure

On the top menu of the Cube Structure Workspace you can see menu yo can navigate to other sections, like Dimension usage, KPIs, Actions etc. What is interegsting now is to check Dimension usage you defined relationship between facts and dimensions. As you can see Cube Wizard did this task automatically.

Dimension usage
Dimension usage

Now we can deploy our solution to server. Go to Project -> Properties see Configuraion dialog as on picture bellow. In Deployment section set Target Server and Database name. In other options you can set for example Processing Option to specify whether Analysis Services objects should be processed with deployment of the project. Leave Default in our case to Process cube after deployment.

Project Configuration - Deployment
Project Configuration – Deployment

After you confirm above mentoned seting go to solution explorer, right click on project and click on Deploy in context menu on picture bellow.

Deploy
Deploy

After deployment we can Browse deployed and processed cube in Cube Browser – top right menu.

Cube Browser
Cube Browser

As next steps we could extend dimensions by other attributes, try to create Hierarchy, add another dimension, etc.
Lots of scenarios you can try now, but to be continued in next posts.

Create SSAS database

Here I would like to quickly describe how to easily create
simple SSAS database. If you don’t have Data tools in your studio you can download it here https://bit.ly/32etQGG.

Here are described steps in short:

  1. Create relation database
  2. Create Analysis Services project
  3. Create connection to Data Source
  4. Create Data Source view and put Data Source objects in there
  5. Create dimensions
  6. Create cube, measures and dimensions usage
  7. Process and deploy created SSAS database

Let’s create database structure first. I created one test dimension and one test table for simplicity.

CREATE DATABASE [Test]
CONTAINMENT = NONE ON PRIMARY
( NAME = N'Test', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\Test.mdf' , SIZE = 512000KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
LOG ON ( NAME = N'Test_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\Test_log.ldf' , SIZE = 512000KB , MAXSIZE = 2048GB , FILEGROWTH = 10%)
GO
USE [Test]
GO
SET ANSI_NULLS ON
GO 
SET QUOTED_IDENTIFIER ON
GO
 
CREATE TABLE [dbo].[FactTest](
    [id] [int] IDENTITY(1,1) NOT NULL,
    [dimtest_id] [int] NULL,
    [InsertDateTime] [datetime] NULL
)
ON [PRIMARY]
GO
 
ALTER TABLE [dbo].[FactTest] WITH CHECK ADD CONSTRAINT [FK__DIMTest_id] FOREIGN KEY([dimtest_id]) REFERENCES [dbo].[DIMTest] ([id])
GO
 
ALTER TABLE [dbo].[FactTest] CHECK CONSTRAINT [FK__DIMTest_id]
GO
SET ANSI_NULLS ON
GO
 
SET QUOTED_IDENTIFIER ON
GO
 
CREATE TABLE [dbo].[DIMTest](
    [id] [int] IDENTITY(1,1) NOT NULL,
    [name] [sysname] NOT NULL,
CONSTRAINT [PK__DIMTest_id] PRIMARY KEY CLUSTERED
(   [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS ON, ALLOW_PAGE_LOCKS = ON)
ON [PRIMARY]
)
ON [PRIMARY]
 
GO

Now open Microsoft Visual Studio and create New Analysis Services Project.On picture bellow you see Solution Explorer with final solution. I tried to figure out individual steps you should do to create your SSAS database in defined order.

Picture 01 - Visual Studio - Solution Explorer
Picture 01 – Visual Studio – Solution Explorer

First create connection to your Data Source which is SQL Server database in our case. By right clicking mouse on Data Sources section, add New Data Source from context menu.

Picture 02 - Visual Studio - Data source
Picture 02 – Visual Studio – Data source

As next step we have to create Data Source view to get objects we would like to work with. By right clicking mouse on Data Source Views section, add New Data Source View from context menu. Right click on Data Source View surface and select Add/Remove tables from the context menu. Here we select tables we created at the begging. As you can see from menu you can create queries too. Visual studio tries to create relationships between objects you put into Data Source View. It comes from your referential integrity set on your object’s. In case you are missing constraints on your tables or Studio didn’t create from some reasons this relationship you can create or modify it manually (by dragging mouse between objects, or by context menu form Data Source View surface).

Picture 03 - Visual Studio - Data source view
Picture 03 – Visual Studio – Data source view

In next step create dimension DIMTest, and then create dimension usage – create relationship between cube and dimension. By right click on dimension and New dimension from context menu. Dimension Wizard appears. It will navigate you through process of dimension creation. You can choose you would like to create dimension from existing table you have in Data Source View or you generate the dimension. In next steps you are advised to select attributes will be present in the Dimension. Let’s click next on following Dialog windows .

Picture 04 - Visual Studio -Dimension Wizard
Picture 04 – Visual Studio -Dimension Wizard
Picture 05 - Visual Studio -Dimension Wizard - Attributes
Picture 05 – Visual Studio -Dimension Wizard – Attributes

When you are finished, you should see something similar on picture bellow. I will not show other sections like Attribute Relationships etc. Let’s go with simple dimension structure and its attributes.

Picture 06 - Visual Studio -Dimension structure
Picture 06 – Visual Studio -Dimension structure

If we would have another dimension, we would add them in similar way. Because I have only one dimension in my example, I can move to the next step, creating cube – define Measures and Dimension usage. Right click on Cubes section and select New cube.

As in creating dimension scenario we get Cube Wizard helping user to create cube with its attributes. Set Use existing tables option in the next window. Select table, will be used for measure attributes. FactTest table in our scenario.

Picture 07 - Visual Studio - Cube Wizard - Measure Group
Picture 07 – Visual Studio – Cube Wizard – Measure Group

Set Measures we can get from our SSAS cube.

Picture 08 - Visual Studio - Cube Wizard - Measures
Picture 08 – Visual Studio – Cube Wizard – Measures

Select Existing Dimensions we created in one of previous steps.

Picture 09 - Visual Studio - Cube Wizard - Selecting dimension
Picture 09 – Visual Studio – Cube Wizard – Selecting dimension

Finally put a name for our new cube.

Picture 10 - Visual Studio - Cube Wizard - Cube name
Picture 10 – Visual Studio – Cube Wizard – Cube name

Now you should see cube designer window. On the left side Cube structure section there are cube Measures we set. 

Picture 11- Visual Studio - Cube structure - Measures
Picture 11- Visual Studio – Cube structure – Measures

By right click on measure we can get its properties to check operator used for aggregation function of measured data.

Picture 12- Visual Studio - New Measure
Picture 12- Visual Studio – New Measure

In the next section – Dimension usage we set dimension used to work with our cube and its relationships. Our scenario is very simple we add our DIM Test dimension and set Regular relationship with Fact table which is typical for star schema of multidimensional model of SSAS cube.

Picture 13 - Dimension usage- Relationship
Picture 13 – Dimension usage- Relationship

Finally, we should see settings on picture bellow.

Picture 14 - Dimension usage
Picture 14 – Dimension usage

Processing or Deployment settings on picture bellow, by right mouse click in Database section in Solution explorer. Deployment settings are situated in Visual Studio, top menu, Project -> Properties -> Deployment section. Here you set the Destination server and name of SSAS database you deploy.

Picture 15 - Deploy SSAS project
Picture 15 – Deploy SSAS project

I have to notice that it was the easiest and fastest way to create simple SSAS database from scratch. I skipped lots of settings and possibilities which analysis services offers. As you can see on picture bellow there are options to set Calculations, Aggregations, Partitions etc.

Picture 16 - Cube menu
Picture 16 – Cube menu

You can download solution here: ProcessingIncrement.

I would like to describe all settings and features of Analysis Services from more perspectives and used with more scenarios, step by step, in next posts. So, stay tunned!.

 

 

SSIS package – Analysis services processing tasks

To process SSAS database objects you can use variant of tools/approaches one of them comes with Integration Services. If there is data processing to Analysis Services database part of your ETL process, SSIS package is good solution for handling it.

There is Analysis Services Processing task you can simply select object you would like to process with. To create such a solution processing your SSAS database you have actuality put two components to your SSIS package.

  1. Analysis Services Connection manager
  2. Analysis Services processing task

Download Data tools for Visual Studio if you don’t have. Now you can process SSAS database and deploy solution to SSAS server.

Let’s create package. New-> Integration Services project. Add Analysis Services Connection Manager to connect to our SSAS database.

Picture 01 - Analysis Services Connection Manager
Picture 01 – Analysis Services Connection Manager

Add two Analysis Services Processing Tasks   from SSIS toolbox to  process dimension and fact data.

Picture 02 - Analysis Services Processing Task
Picture 02 – Analysis Services Processing Task

By double click (or right mouse and Edit) on Analysis Services Processing Tasks you get window where you set objects you would like to work with. Go to Processing Settings section select connection manager, click on Add button and select objects from dialog, picture bellow. You can choose cube, or just partition of cube or dimension to proceed.

Picture 03 - Add Analysis Services Object
Picture 03 – Add Analysis Services Object

When objects are selected you can choose Process Options you would like to proceed the object. For example, in processing option of fact table select Process Add for incremental processing. The other options will be explained and demonstrated in one of next post to complete an overview of SSAS processing options. You can find other processing types for multidimensional SSAS here https://bit.ly/2SPsBtg .

Picture 03 - Analysis Services Process Options
Picture 03 – Analysis Services Process Options

Finally, you can get SSIS package with flow like on picture bellow. You should process dimensions first to avoid unknown member processing error when processing OLAP facts. You can work on it and extend this simple package with processing of DWH relation layer.

Picture 04 - SSIS package - processing Dimensions, Facts
Picture 04 – SSIS package – processing Dimensions, Facts

You can download package here: IncrementalProcessing

Stay tuned.