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.

 

SSAS – user does not have permission to create a new object

I deployed OLAP database to SSAS on customers servers many times. Few times I got stuck of that I was not able to create object trough XMLA script and I was so close, and I didn’t know that.

Of course, it depends on your permissions, but in my case, just run Management Studio like Administrator. What is the key to succeed

Sometimes the solution is so easy.

 

 

 

 

 

 

 

 

 

 

 

 

Analysis services switch to multidimensional mode

Once I came to customer to implement OLAP solution I found that I am not able to deploy my OLAP XMLA database script since customer Analysis services installed on server was switched in tabular mode and my OLAP database was designed for multidimensional mode. This post is not focused on difference between tabular and multidimensional mode. But in short. Analysis services supports tree modes. Multidimensional, Pivot for Sharepoint and Pivot mode. Mode is set trough installation process. Here I come with quick “how to” switch from tabular to multidimensional mode. Hopefully it saves time to you when you come to the same situation.

In short:

  1. Edit config msmdsrv file in SSAS installation directory
  2. Restart SSAS service

Go to SSAS installation directory, in my case it was situated on C:\Program Files\Microsoft SQL server\MSAS14.MSSQLServer\OLAP\Config\ and find msmdsrv configuration settings file. Open it in notepad or another texts editor.

SSAS config file path
Picture 1 – SSAS config file path

Find DeploymentMode tag and change it to 0. 2 is for Tabular mode,0 for multidimensional mode, 1 for Pivot for Sharepoint.

SSAS config file path
Picture 2 – SSAS config file path

After you finish editing configuration file restart SSAS service. You can do it through Windows->Services or using SQL Management Studio as shown on picture bellow.

SSAS config file path
Picture 3 – SSAS config file path