Marco Russo's Blog
View full profileMemory Settings in #Tabular #ssas (and Prepare for #msteched!)
We are going very close to the release of SQL Server 2012 and after using Analysis Services 2012 for almost one year in a relatively small number of scenarios, I’m really curios to see the questions and the issues that will emerge when its adoption will Read more
Optimize Table and Column Size in #PowerPivot and #BISM #Tabular #SSAS #VertiPaq
When you create a PowerPivot workbook or a BISM Tabular model (new in Analysis Services 2012), you store data by using the VertiPaq engine, which is an in-memory columnar database. Instead of considering the row of a table as the main unit of storage, Read more
Free online session at PASS DW/BI Virtual Chapter #sqlpass – Wed Jan 18th, 2012
On January 18th, 2012 at 12pm Eastern Time (which is 5pm GM) Alberto Ferrari will deliver a free online session for the PASS DW/BI Virtual Chapter . This is the official description of the session. Many-to-Many Relationships in DAX The introduction of Read more
Using SQL to query Multidimensional and Tabular models #dax #sql #mdx #ssas
Analysis Services answers to query in MDX, in DAX (by now just for Tabular models) and has a limited capability to answer SQL queries. It is not useful for any development or client tool, but I wanted to write a blog post on it in order to be able to Read more
Fact Tables with Different Granularities in #PowerPivot and #BISM #Tabular
A few weeks ago I received a question that inspired me in writing this article about how to handle data at different granularities in PowerPivot and BISM Tabular. I think this is a common pattern when you have a budget table that contains data at an aggregated Read more
Pre-Conference Seminar at #TechEdEurope: #ssas #bism #tabular
The Microsoft TechEd Europe 2012 will be in Amsterdam this year on June 26-29. The day before (25 June 2012) there are several pre-conference seminars and I’m glad to announce that I and Alberto Ferrari will deliver this one: Using BISM Tabular in Microsoft Read more
Free online session at PASS DW/BI Virtual Chapter #sqlpass – Tues Jan 10th, 2012
Tomorrow January 10th, 2012 at 3pm Eastern Time (which is 8pm GMT) I will deliver a free online session for the PASS DW/BI Virtual Chapter . This is the official description of the session. Vertipaq vs OLAP: Change Your Data Modeling Approach While in Read more
Use parameters in your #DAX queries
The DAX query syntax allows you to insert a parameter by using the @ symbol. EVALUATE CALCULATETABLE ( ‘Product Subcategory’ , ‘Product Category’ [Product Category Name] = @Category ) Depending on the client and on the driver you are using to execute Read more
Analyze #DAX query plan with Profiler
Jeffrey Wang started the 2012 (or finished the 2011, depending on your time zone) by publishing the first article dedicated to DAX Query plan . While I look forward to reading next articles, it is interesting the explanation of what is the relationship Read more
String Comparison in #DAX
In DAX you don’t have the LIKE operator and you have to use SEARCH instead. However, performance are not very good and it is better to use LEFT and RIGHT if you just need to compare the initial (or ending) match of a string. I just wrote an article about Read more