<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://sqlblog.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tags 'SSAS', 'Tabular', and 'Communities'</title><link>http://sqlblog.com/search/SearchResults.aspx?o=DateDescending&amp;tag=SSAS,Tabular,Communities&amp;orTags=0</link><description>Search results matching tags 'SSAS', 'Tabular', and 'Communities'</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP2 (Build: 61129.1)</generator><item><title>How Far Can You Push Tabular? Birds of a Feather at TechEd 2013–North America #msteched #ssas #tabular</title><link>http://sqlblog.com/blogs/marco_russo/archive/2013/05/20/how-far-can-you-push-tabular-birds-of-a-feather-at-teched-2013-north-america-msteched-ssas-tabular.aspx</link><pubDate>Mon, 20 May 2013 13:15:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:49110</guid><dc:creator>sqlbi</dc:creator><description>&lt;p&gt;I and &lt;a href="http://www.sqlbi.com/articles/author/alberto-ferrari/"&gt;Alberto Ferrari&lt;/a&gt; will moderate the following Birds of a Feather session at &lt;a href="http://northamerica.msteched.com"&gt;TechEd North America 2013&lt;/a&gt;:&lt;/p&gt;  &lt;p&gt;CODE: BOF-ITP21   &lt;br /&gt;&lt;strong&gt;TITLE: How Far Can You Push Tabular?&lt;/strong&gt;    &lt;br /&gt;SPEAKER: A. Ferrari; M. Russo    &lt;br /&gt;TIMESLOT: June 5, 2013 at 1:30 pm    &lt;br /&gt;ROOM: 263&lt;/p&gt;  &lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;"&gt;&lt;font face="Calibri"&gt;Abstract: Tabular is the new engine in SQL Server Analysis Services. It is an in-memory columnar database capable of unprecedented performance but… how far can we go with an in-memory database? Will you be able to load your data warehouse in-memory to obtain the best performance? What should you care about when building the DWH? What does “fast” mean? What about real-time data? Can you query many billions rows really fast? In this BOF we will show some theory and share some of our experience, but we will welcome your questions and experience, to build a round-table of experts in order to speak about this fascinating topic.&lt;/font&gt;&lt;/span&gt;     &lt;/p&gt;  &lt;p&gt;I really look forward to this event – I and Alberto have some experience using Tabular in many different scenarios, but every time we meet new people at conferences we discover that there are new challenges ahead. This session will be the place to discuss together where are the limits today. Much far than many people realize, in my opinion!&lt;/p&gt;</description></item><item><title>Interviewed in SQL Down Under podcast #sqlserver #ssas #powerpivot</title><link>http://sqlblog.com/blogs/marco_russo/archive/2013/04/01/interviewed-in-sql-down-under-podcast-sqlserver-ssas-powerpivot.aspx</link><pubDate>Mon, 01 Apr 2013 18:03:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:48477</guid><dc:creator>sqlbi</dc:creator><description>&lt;p&gt;I’ve been interviewed by Greg Low in SQL Down Under show 58, and this is *not* an April fool! We talked for one hour about Tabular, Multidimensional, Data Warehouse and just a little bit about music (you can discover which music genre I’m used to listen…).&lt;/p&gt;  &lt;p&gt;You can hear this interview from the &lt;a href="http://www.sqldownunder.com/Resources/Podcast/Show058MarcoRusso.aspx"&gt;SQL Down Under Show 58 page&lt;/a&gt; (it is an MP3 format) and if you like it there are many &lt;a href="http://www.sqldownunder.com/Resources/Podcast.aspx"&gt;other past shows available&lt;/a&gt;. The PodCast is also available on &lt;a&gt;iTunes&lt;/a&gt; and you can hear other podcasts in &lt;a href="https://itunes.apple.com/us/podcast/sql-down-under/id503822116"&gt;SQL Down Under page&lt;/a&gt; on iTunes Preview.&lt;/p&gt;</description></item><item><title>LASTDATE dates arguments and upcoming events #dax #tabular #powerpivot</title><link>http://sqlblog.com/blogs/marco_russo/archive/2012/10/01/lastdate-dates-arguments-and-upcoming-events-dax-tabular-powerpivot.aspx</link><pubDate>Mon, 01 Oct 2012 17:04:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:45415</guid><dc:creator>sqlbi</dc:creator><description>&lt;p&gt;Recently I&amp;nbsp;had to write a DAX formula containing a LASTDATE within the logical condition of a FILTER: I found that its behavior was not the one I expected and I further investigated. At the end, I wrote my findings in &lt;a href="http://www.sqlbi.com/articles/usage-of-dates-argument-in-a-row-context/"&gt;this article on SQLBI&lt;/a&gt;, which can be applied to any Time Intelligence function with a &amp;lt;dates&amp;gt; argument.&lt;/p&gt;&lt;p&gt;The key point&amp;nbsp;is that when you write &lt;/p&gt;&lt;p&gt;&lt;strong&gt;LASTDATE( table[column] )&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;in reality you obtain something like &lt;/p&gt;&lt;p&gt;&lt;strong&gt;LASTDATE( CALCULATETABLE( VALUES( table[column] ) ) )&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;which converts an existing row context into a filter context.&lt;/p&gt;&lt;p&gt;Thus, if you have something like &lt;/p&gt;&lt;p&gt;&lt;strong&gt;FILTER( table, table[column] = LASTDATE( table[column] )&lt;/strong&gt; &lt;/p&gt;&lt;p&gt;the FILTER will return all the rows of table, whereas you probably want to use &lt;/p&gt;&lt;p&gt;&lt;strong&gt;FILTER( table, table[column]&amp;nbsp;= LASTDATE( VALUES( table[column] ) ) )&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;so that the existing filter context before executing FILTER is used to get the result from VALUES( table[column] ), avoiding the automatic expansion that would include a CALCULATETABLE that would hide the existing filter context.&lt;/p&gt;&lt;p&gt;If after reading the &lt;a href="http://www.sqlbi.com/articles/usage-of-dates-argument-in-a-row-context/"&gt;article&lt;/a&gt; you want to get more insights, read the Jeffrey Wang's post &lt;a href="http://mdxdax.blogspot.com/2011/01/dax-time-intelligence-functions.html"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;In these days I'm speaking at &lt;a href="http://www.sqlpass.org/sqlrally/2012/nordic/"&gt;SQLRally Nordic 2012&lt;/a&gt;&amp;nbsp;in Copenhagen&amp;nbsp;and I will be in &lt;a href="http://www.sqlbi.com/courses/ssas-workshop-cologne-oct2012/"&gt;Cologne (Germany)&lt;/a&gt; next week for a SSAS Tabular Workshop, whereas Alberto will teach the same workshop in &lt;a href="http://www.sqlbi.com/courses/ssas-workshop-amsterdam-oct2012/"&gt;Amsterdam&lt;/a&gt; one week later. Both workshops still have seats available and the Amsterdam's one is still in early bird discount until October 3rd!&lt;/p&gt;&lt;p&gt;Then, in November I expect to meet many blog readers at &lt;a href="http://www.sqlpass.org/summit/2012/"&gt;PASS Summit 2012&lt;/a&gt; in Seattle and I hope to find the time to write other article on interesting things on Tabular and PowerPivot. Stay tuned!&lt;/p&gt;</description></item><item><title>May Schedule of SSAS #Tabular Workshop for US &amp;amp; Europe</title><link>http://sqlblog.com/blogs/marco_russo/archive/2012/05/02/may-schedule-of-ssas-tabular-workshop-for-us-europe.aspx</link><pubDate>Wed, 02 May 2012 08:01:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:43130</guid><dc:creator>sqlbi</dc:creator><description>&lt;p&gt;As you might have read in the previous post, May is a busy month for all the editions of the &lt;a href="http://www.ssasworkshop.com/"&gt;&lt;strong&gt;SSAS Tabular Workshop&lt;/strong&gt;&lt;/a&gt;. We’ll start with an online edition next week in a time slot that should be good for US and other countries in that time zones. Then there will be many other countries in our road show and &lt;a href="http://cwebbbi.wordpress.com/"&gt;Chris Webb&lt;/a&gt; will join &lt;a href="http://sqlblog.com/blogs/alberto_ferrari/"&gt;Alberto&lt;/a&gt; in &lt;a href="http://www.sqlbi.com/courses/ssas-workshop-brussels-may2012/"&gt;Brussels&lt;/a&gt; and me in &lt;a href="http://www.sqlbi.com/courses/ssas-workshop-london-may2012/"&gt;London&lt;/a&gt;. This is the complete list:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://www.sqlbi.com/courses/ssas-workshop-online-may2012/"&gt;May 7-8, 2012 – Online edition&lt;/a&gt; (via LiveMeeting) optimized for US &amp;amp; Canada time zones&lt;/li&gt;    &lt;ul&gt;     &lt;li&gt;But we also have someone from Europe that will like to spend two evenings with us!&lt;/li&gt;   &lt;/ul&gt;    &lt;li&gt;&lt;a href="http://www.sqlbi.com/courses/ssas-workshop-brussels-may2012/"&gt;May 14-15, 2012 – Brussels&lt;/a&gt;, Belgium&lt;/li&gt;    &lt;ul&gt;     &lt;li&gt;There is also a &lt;a href="http://sqlug.be/nextevent/event/?id=31"&gt;SQLUG event&lt;/a&gt; on May 14 in the evening, all details &lt;a href="http://sqlug.be/nextevent/event/?id=31"&gt;here&lt;/a&gt;!&lt;/li&gt;   &lt;/ul&gt;    &lt;li&gt;&lt;a href="http://www.sqlbi.com/courses/ssas-workshop-oslo-may2012/"&gt;May 21-22, 2012 – Oslo&lt;/a&gt;, Norway&lt;/li&gt;    &lt;ul&gt;     &lt;li&gt;There should be a user group event on May 21 in the evening, after the workshop. I’ll post details in another blog post as soon as it is confirmed. By now, save the date!&lt;/li&gt;   &lt;/ul&gt;    &lt;li&gt;&lt;a href="http://www.sqlbi.com/courses/ssas-workshop-stockholm-may2012/"&gt;May 24-25, 2012 – Stockholm&lt;/a&gt;, Sweden&lt;/li&gt;    &lt;ul&gt;     &lt;li&gt;There is also a scheduled &lt;a href="http://www.eventbrite.com/event/2916568535"&gt;community event&lt;/a&gt; of SQLUG in the evening of May 24, don’t miss it!&lt;/li&gt;   &lt;/ul&gt;    &lt;li&gt;&lt;a href="http://www.sqlbi.com/courses/ssas-workshop-london-may2012/"&gt;May 28-29, 2012 – London&lt;/a&gt;, UK&lt;/li&gt;    &lt;ul&gt;     &lt;li&gt;I and Chris Webb will deliver this edition in UK – seats are limited, register soon!&lt;/li&gt;   &lt;/ul&gt;    &lt;li&gt;&lt;a href="http://www.sqlbi.com/courses/ssas-workshop-milan-jun2012/"&gt;May 31 – June 1, 2012 – Milan&lt;/a&gt;, Italy&lt;/li&gt;    &lt;ul&gt;     &lt;li&gt;This edition will be delivered in Italian language&lt;/li&gt;   &lt;/ul&gt; &lt;/ul&gt;  &lt;p&gt;And if two days are too much for you, don’t forget the one-day TechEd PreCon &lt;strong&gt;Using BISM Tabular in Microsoft SQL Server Analysis Services 2012:&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://northamerica.msteched.com/preconferenceseminars"&gt;June 10, 2012 – TechEd US&lt;/a&gt; in Orlando&lt;/li&gt;    &lt;li&gt;&lt;a href="http://europe.msteched.com/PreCons"&gt;June 25, 2012 – TechEd Europe&lt;/a&gt; in Amsterdam&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;I hope to see you in one of these dates!&lt;/p&gt;</description></item></channel></rss>