Book Image

SQL Server Analysis Services 2012 Cube Development Cookbook

Book Image

SQL Server Analysis Services 2012 Cube Development Cookbook

Overview of this book

Microsoft SQL Server is a relational database management system. As a database, it is a software product whose primary function is to store and retrieve data as requested by other software applications. SQL Server Analysis Services adds OLAP and data mining capabilities for SQL Server databases. OLAP (online analytical processing) is a technique for analyzing business data for effective business intelligence. This practical guide teaches you how to build business intelligence solutions using Microsoft’s core product – SQL Server Analysis Services. The book covers the traditional multi-dimensional model which has been around for over a decade as well as the tabular model introduced with SQL Server 2012. Starting with comparing MultiDimensional and tabular models – discussing the values and limitations of each, you will then cover the essential techniques for building dimensions and cubes. Following on from this, you will be introduced to more advanced topics, such as designing partitions and aggregations, implementing security, and synchronizing databases for solutions serving many users. The book also covers administrative material, such as database backups, server configuration options, and monitoring and tuning performance. We also provide a primer on MultiDimensional eXpressions (MDX) as well as Data Analysis expressions (DAX) languages. This book provides you with data cube development techniques, and also the ongoing monitoring and tuning for Analysis Services.
Table of Contents (19 chapters)
SQL Server Analysis Services 2012 Cube Development Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Analyzing your model in Excel


Do you want to see how your model would look in Excel? Before we get to the deployment and other more enterprise or server options related to Tabular Models, you should have a look at your model in a client tool. This capability is built into SSDT.

How to do it…

A good time to analyze your model is before deploying it:

  1. In the Model menu on the ribbon, choose Analyze in Excel.

  2. You will be prompted to choose a few options that we will discuss later. Leave the defaults and click on OK.

    In Excel, you can use the Pivot Table to check measures, hierarchies, and KPIs that you have created so far. This is a nice, quick check on how your data will look to an end user.

There's more…

When you first choose to analyze the data in Excel, you are presented with multiple options about how you want to view the data. As you can see, you have the option to choose different users, roles, and perspectives when analyzing the data. This will allow you to verify security settings (users and...