Packt Publishing Community, Experience, Distilled

Creating an Analysis Services Cube with Visual Studio 2008 - Part 2

HomeBooksSupportFreeAuthorsAward
WELCOME NEWSLETTERS ARTICLES YOUR ACCOUNT ABOUT US

 
Creating an Analysis Services Cube with Visual Studio 2008 - Part 1

A cube in the context of Business Intelligence is a multidimensional representation of business facts that can be accessed quickly to provide specific information. (This can be accomplished by properly written queries in a relational database, but the overhead involved in processing the query, which may involve a large number of 'joins', is simply not efficient). While a relational model is more suited to OLTP, a different model is necessary for OLAP. Whereas highly normalized tables are a norm for OLTP, the model for OLAP does not require normalization. The SQL Server Analysis Services that supersedes the earlier versions is specifically meant for analyzing data in the archives or in OLTP databases to be retrieved and burnished to provide the 'Intelligence' by mining for facts hidden in the data. This two part article by Dr. Jayaram Krishnaswamy describes how a Cube is designed using Visual Studio 2008 and how it may be browsed on the Analysis Server. In Part 1, the necessary items for creating the Cube, namely the Data Source and Data Source Views are described.


See More

Article Network FAQ

Want to know more about Packt's Article Network? Interested in contributing your article ideas?

Please visit our FAQ for more information.


See More

SEARCH

Search our Site

 
Creating an Analysis Services Cube with Visual Studio 2008 - Part 2

As noted in Part 1, OLAP presents Business Intelligence via what is known as a CUBE. A Cube has many dimensions and it provides a faster method to access the intelligence compared to the structured querying where the overhead of 'Joins' makes it inefficient. Taking the example of a 'Sales' Cube having everything related to sales we can identify the dimensions as the Sales Outlet, The Customers , the Products and the time period over which sales are being audited or looked into. We also notice that there are certain measures that we are interested related to these 'dimensions' like 'Store Sales', 'Cost of Products, 'number of units sold' etc. The Analysis Services analyzes these intricate relationship that exist in a cube. In this part we will see the process of creating a Cube in VS 2008.

Reviewing Jayaram's other OLAP related articles may greatly help in understanding this article.

Creating a New Cube

The folder structure for the project developed in Part 1 is shown in the next figure. The Northwind.ds data source and the Northwind.dsv data source view were configured in Part 1. There are no pre-existing cubes in Nwind2008.

Right click the Cubes folder and from the drop-down menu you can create a new Cube.

Click on New Cube... menu item. This opens the Cube Wizard welcome window as shown.

Click on the Next button. This opens the Select Creation Method page of the wizard as shown. There are three options and the default is used for this article.

Click on the Next button. This opens the Select Measure Groups tables. At least one table must be chosen to continue. There is even the option of asking for a suggestion.

Click on the Suggest button at the top. The program goes through the motions and comes up with two tables as candidates for Measures group, the Products table and the Order Details table. You will see check marks appearing for these two tables. Accept the suggested tables for measures and click on the Next button.

This opens the Select Measures window where you can choose measures that you want to include in the Cube as shown.

Uncheck the ID related items in the Products table and click on the Next button. This brings up the Select New Dimensions window as shown in the next figure. Here also one could choose the needed items. For this article the default is accepted.

Click on the Next button. This takes you to the Completing the Wizard window which shows your Cube contents in a tree view as shown.

Now click on the Finish button. This creates the Cube as shown in the Solution Explorer.

Now you will see additional tabs open up for the Northwind.cube as shown. Using these tabs you can look at more details. These are outside the scope of this article.

Also separate windows gets displayed for Cube's Measures and Dimensions as shown.

Also, the Data Source View of the Cube with the relationships between the Dimensions and Measures gets displayed as shown.





Beginners Guide to SQL Server Integration Services Using Visual Studio 2005
 
Beginners Guide to SQL Server Integration Services Using Visual Studio 2005
  • Environment set up for Visual Studio 2005 with respect to SSIS and multiple tasking
  • Connecting to Microsoft Access, Text Files, Excel Spread Sheets
  • Linking data source and data destination to a task
  • Transforming data from a source going to a destination
  • Using the scripting support that the IDE provides and event handling
  • Learning about  tasks such as web service and XML, which are new in SQL Server 2005
http://www.PacktPub.com/sql-server-integration-services-visual-studio-2005/book


Cube Processing

At this point it may be interesting to know how all this might have affected the Analysis Server. As you can see from the following figure that every node is empty. The database is there because we created an empty database with the same name to start with.

Right click the Northwind.cube and from the drop-down menu choose Process... as shown in the next figure.

Since a database was pre-existing you may get the following message from the Microsoft Visual Studio interface.

As the answer for the question posed, click on the Yes button. The Visual Studio begins the deployment and after a while you should see the Deployment Succeed message as shown.

Now if you go back to the SQL Server Management Studio and refresh the NWind2008 database you should be seeing the database details as shown.

As soon as the deployment is completed the Visual Studio Interface displays the Process Cube Wizard window as shown. Although one can make many changes as one might see from the window, for this article, the defaults are accepted. Since this is the first time working with the Cube, the Process Option, namely Process Full is appropriate. Later it is possible to use other options shown by the pull-down menu.

Click on the button Run.... The Cube gets processed so that all the SQL queries that form the basis for setting up the Cube gets executed. The Process Progress window shows the details of the processing. You may reprocess if changes are made to the Cube.

Click the View Details button to see the following display.

<Batch xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<Parallel>
<Process xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ddl2="http://schemas.microsoft.com/analysisservices/2003/engine/2"
xmlns:ddl2_2="http://schemas.microsoft.com/analysisservices/2003/engine/2/2"
xmlns:ddl100_100=
"http://schemas.microsoft.com/analysisservices/2008/engine/100/100">
<Object>
<DatabaseID>Nwind2008</DatabaseID>
<CubeID>Northwind</CubeID>
</Object>
<Type>ProcessFull</Type>
<WriteBackTableCreation>UseExisting</WriteBackTableCreation>
</Process>
</Parallel>
</Batch>

Close the Process Progress and Process Cube windows.

Summary

This article shows the design and processing of the Cube using the Data Source and Data Source View designed in Part 1. The Visual Studio interface provides a very straight forward procedure to process the Cube and the process is unambiguous. The processing of the Cube essentially consists of deploying the database and then processing the various queries necessary for the details contained in the Cube.





Beginners Guide to SQL Server Integration Services Using Visual Studio 2005
 
Beginners Guide to SQL Server Integration Services Using Visual Studio 2005
  • Environment set up for Visual Studio 2005 with respect to SSIS and multiple tasking
  • Connecting to Microsoft Access, Text Files, Excel Spread Sheets
  • Linking data source and data destination to a task
  • Transforming data from a source going to a destination
  • Using the scripting support that the IDE provides and event handling
  • Learning about  tasks such as web service and XML, which are new in SQL Server 2005
http://www.PacktPub.com/sql-server-integration-services-visual-studio-2005/book




About the Author

Dr. Jay Krishnaswamy is a graduate of the Indian Institute of Science, Bangalore writes on database and web development related topics to several computer programming related web sites. He is an active participant in several forums and discussion groups. Before working in the IT industry as a Microsoft Certified Trainer and a Siebel Certified consultant he taught at several institutes of technology and universities in India, Australia, Brazil and the USA. Links to his articles may be found at his web site or the blog. He lives in Plainsboro, NJ, USA and may be reached at jkrishnaswamy@comcast.net
Books from Packt

Beginners Guide to SQL Server Integration Services Using Visual Studio 2005
Beginners Guide to SQL Server Integration Services Using Visual Studio 2005

ODP.NET Developer’s Guide: Oracle Database 10g Development with Visual Studio 2005 and the Oracle Data Provider for .NET
ODP.NET Developer’s Guide: Oracle Database 10g Development with Visual Studio 2005 and the Oracle Data Provider for .NET

Microsoft AJAX Library Essentials: Client-side ASP.NET AJAX 1.0 Explained
Microsoft AJAX Library Essentials: Client-side ASP.NET AJAX 1.0 Explained

ASP.NET Data Presentation Controls Essentials
ASP.NET Data Presentation Controls Essentials

Programming Windows Workflow Foundation: Practical WF Techniques and Examples using XAML and C#
Programming Windows Workflow Foundation: Practical WF Techniques and Examples using XAML and C#

Visual SourceSafe 2005 Software Configuration Management in Practice
Visual SourceSafe 2005 Software Configuration Management in Practice

LINQ Quickly
LINQ Quickly

BlackBerry Enterprise Server for Microsoft® Exchange
BlackBerry Enterprise Server for Microsoft® Exchange




 
Article Network


Packt Article Network

Visit Packt's Article Network, for all the latest quality, relevant and free content.
See More



NEWSLETTER

Sign up for updates, offers, free downloads and you could win an iPod Shuffle.
Subscription center
 




© Packt Publishing Ltd 2009

RSS