<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SSAS Archives - AzureOps</title>
	<atom:link href="https://azureops.org/articles/category/microsoft-bi/ssas/feed/" rel="self" type="application/rss+xml" />
	<link>https://azureops.org/articles/category/microsoft-bi/ssas/</link>
	<description>Notable things about Cloud, Data and DevOps.</description>
	<lastBuildDate>Fri, 25 Nov 2022 18:51:46 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://i0.wp.com/azureops.org/wp-content/uploads/2021/04/cropped-android-chrome-512x512-1.png?fit=32%2C32&#038;ssl=1</url>
	<title>SSAS Archives - AzureOps</title>
	<link>https://azureops.org/articles/category/microsoft-bi/ssas/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">190208641</site>	<item>
		<title>SSAS Tabular vs Multidimensional model</title>
		<link>https://azureops.org/articles/ssas-tabular-vs-multidimensional/</link>
		
		<dc:creator><![CDATA[Kunal Rathi]]></dc:creator>
		<pubDate>Tue, 25 Oct 2022 14:00:55 +0000</pubDate>
				<category><![CDATA[Analysis Services]]></category>
		<category><![CDATA[SSAS]]></category>
		<category><![CDATA[SSAS Tabular vs Multidimensional]]></category>
		<guid isPermaLink="false">https://azureops.org/?p=3994</guid>

					<description><![CDATA[<p> There are 2 types of Analysis Services models available; the Multidimensional model and the Tabular model. While both these models have their own significance, here is a quick comparison between SSAS Tabular vs Multidimensional model</p>
<p>The post <a href="https://azureops.org/articles/ssas-tabular-vs-multidimensional/">SSAS Tabular vs Multidimensional model</a> appeared first on <a href="https://azureops.org">AzureOps</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Analysis Services is an analytical data engine (VertiPaq) used in decision support and business analytics. It provides enterprise-grade semantic data models for business reports and client applications such as Power BI, Excel, Reporting Services reports, and other data visualization tools. Two types of Analysis Services models are available; the Multidimensional model and the Tabular model. While both these models have significance, here is a quick comparison between SSAS Tabular vs. Multidimensional models.</p>



<h2 class="wp-block-heading">SSAS Tabular vs Multidimensional </h2>



<figure class="wp-block-table is-style-regular"><table><thead><tr><th>#</th><th><strong>Tabular Model</strong></th><th><strong>Multidimensional</strong></th></tr></thead><tbody><tr><td><strong>Aggregations</strong></td><td>No</td><td>Yes</td></tr><tr><td><strong>Data Compression</strong></td><td>Up to 1/10th of the original data</td><td>Up to 1/3th of the original data</td></tr><tr><td><strong>Data Access Modes</strong></td><td><strong>Cached mode</strong>: All the data is loaded in memory, and all queries are answered from there.<br><strong>Direct Query  (Pass-through)</strong>: Bypass the in-memory model, allowing client applications to query data directly on the database</td><td><strong><br>MOLAP:  T</strong>he source data is pulled from the relational store, the required aggregation is performed within Analysis Services, and finally, the data is stored in the Analysis Services server in a compressed and optimized multidimensional format.<br>ROLAP: This does not pull data from the underlying relational database source to the OLAP server. Rather, the cube detail data and the aggregated data stay in the relational database source. To store the calculated aggregation, the database server creates additional database objects (indexed views).</td></tr><tr><td><strong>Resources</strong></td><td>More memory (RAM) &amp; CPU will be required if the cached model is used.</td><td>Limited memory and CPU can suffice the requirement. (Will depend on the workload and kind of computations)</td></tr><tr><td><strong>Data Language Layer</strong></td><td>Uses DAX (Data Analysis Expression). The syntax of DAX is very similar to one of Excel formulas, and DAX concepts are similar to relational database concepts and, therefore, easier to grasp for a developer without any experience with Multidimensional concepts. Even though using DAX is rather simple for basic computations (margin, ratio, etc.), it becomes more complex for advanced computations.</td><td>Uses MDX (Multidimensional Expression) as its data language.<br>MDX is a very powerful language but requires a thorough understanding of multidimensional concepts and, therefore, is often perceived as rather complex and difficult to learn.</td></tr><tr><td><strong>Custom Assemblies</strong></td><td>No</td><td>Yes</td></tr><tr><td><strong>composite key relationships</strong></td><td>Not supported directly, we need to define calculated column with composite columns data concatenated</td><td>Supported</td></tr><tr><td><strong>Reasons to go for</strong></td><td>• If you want to use DAX (based on Excel formulas, but is often seen as having a steep learning curve)<br>• If you want to use Power View, PowerPivot, and SharePoint Excel Services<br>• If you need to use multiple data sources<br>• If you need extreme speed in your data queries<br>• If your development timeline is compressed</td><td>• If your dataset is extremely large (in terabytes)<br>• If you need to write back to support<br>• If you need complex calculations, scoping, and named sets<br>• If your solution requires complex modeling</td></tr><tr><td><strong>Pros</strong></td><td>• More performant than OLAP in the majority of the case.<br>• Easier &amp; faster to develop than a Multidimensional model.<br>• Technology for the future.<br>• Integration with Power Pivot.</td><td>• Matured Technology.<br>• Scalable Technology; able to handle very large volumes of data.<br>• Able to cope with advanced modeling/ computations requirements.</td></tr><tr><td><strong>Cons</strong></td><td>• Limited to RAM available (= midsized project).<br>• Missing some advanced computations available with MDX.</td><td>• Cannot be used with Power View.<br>• No major innovations to expect in this product in the future.<br>• Higher complexity than Tabular</td></tr></tbody></table></figure>



<figure class="is-style-default wp-block-image size-large is-resized"><a href="https://marketplace.visualstudio.com/items?itemName=AzureOps.ssiscatalogerpro&amp;ssr=false#overview" target="_blank" rel="noopener"><img data-recalc-dims="1" fetchpriority="high" decoding="async" width="1200" height="148" data-attachment-id="4839" data-permalink="https://azureops.org/articles/azure-data-studio-for-sql-developers/scmw-horizontal-ad/" data-orig-file="https://i0.wp.com/azureops.org/wp-content/uploads/2023/01/SCMW-horizontal-ad.png?fit=1326%2C163&amp;ssl=1" data-orig-size="1326,163" data-comments-opened="0" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="SCMW-horizontal-ad" data-image-description="" data-image-caption="" data-large-file="https://i0.wp.com/azureops.org/wp-content/uploads/2023/01/SCMW-horizontal-ad.png?fit=1200%2C148&amp;ssl=1" src="https://i0.wp.com/azureops.org/wp-content/uploads/2023/01/SCMW-horizontal-ad.png?resize=1200%2C148&#038;ssl=1" alt="" class="wp-image-4839" style="object-fit:cover;width:811px;height:99px" srcset="https://i0.wp.com/azureops.org/wp-content/uploads/2023/01/SCMW-horizontal-ad.png?resize=1200%2C148&amp;ssl=1 1200w, https://i0.wp.com/azureops.org/wp-content/uploads/2023/01/SCMW-horizontal-ad.png?resize=450%2C55&amp;ssl=1 450w, https://i0.wp.com/azureops.org/wp-content/uploads/2023/01/SCMW-horizontal-ad.png?resize=600%2C74&amp;ssl=1 600w, https://i0.wp.com/azureops.org/wp-content/uploads/2023/01/SCMW-horizontal-ad.png?resize=300%2C37&amp;ssl=1 300w, https://i0.wp.com/azureops.org/wp-content/uploads/2023/01/SCMW-horizontal-ad.png?resize=768%2C94&amp;ssl=1 768w, https://i0.wp.com/azureops.org/wp-content/uploads/2023/01/SCMW-horizontal-ad.png?w=1326&amp;ssl=1 1326w" sizes="(max-width: 1200px) 100vw, 1200px" /></a></figure>



<h2 class="wp-block-heading">Which SSAS model is suitable for your reporting use case?</h2>



<p class="wp-block-paragraph">Based on the above comparison, below are some reporting scenarios that state which model will outperform another.</p>



<figure class="wp-block-table"><table><thead><tr><th>Scenario</th><th><strong>Multidimensional MOLAP</strong></th><th><strong>Tabular In-Memory</strong></th><th><strong>More Performant</strong></th></tr></thead><tbody><tr><td><strong>Report on Low granularity data</strong></td><td>Read atomic data from disk.</td><td><strong>Read columnar data from RAM.</strong></td><td>Tabular In–Memory.</td></tr><tr><td><strong>Report on aggregated data with no predefined aggregation</strong></td><td>Read atomic data from disk. Aggregate data in Memory</td><td><strong>Read columnar data from RAM. Aggregate data in Memory</strong></td><td>Tabular In–Memory.</td></tr><tr><td><strong>Report on aggregated data with predefined aggregations on Cold Cache</strong></td><td>Read aggregated data from disk.</td><td>Read columnar data from RAM. Aggregate data in Memory</td><td>Comparable</td></tr><tr><td><strong>Report on aggregated data with predefined aggregations on Warm Cache</strong></td><td><strong>Read aggregated data from RAM.</strong></td><td>Read columnar data from RAM. Aggregate data in Memory</td><td>Multidimensional</td></tr></tbody></table></figure>



<p class="wp-block-paragraph">We have seen a quick comparison between SSAS Tabular vs Multidimensional models.</p>



<h2 class="wp-block-heading">See more</h2>



<iframe width="700" height="394" src="https://www.youtube.com/embed/t2h6xNVFQkc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="is-style-fill wp-block-button"><a class="wp-block-button__link has-white-color has-blush-light-purple-gradient-background has-text-color has-background has-link-color wp-element-button" href="https://azureops.org/product/ssis-catalog-migration-wizard-pro/" target="_blank" rel="noreferrer noopener">Download Now</a></div>
</div>

    <div class="xs_social_share_widget xs_share_url after_content 		main_content  wslu-style-1 wslu-share-box-shaped wslu-fill-colored wslu-none wslu-share-horizontal wslu-theme-font-no wslu-main_content">

		
        <ul>
			        </ul>
    </div> 
<p>The post <a href="https://azureops.org/articles/ssas-tabular-vs-multidimensional/">SSAS Tabular vs Multidimensional model</a> appeared first on <a href="https://azureops.org">AzureOps</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3994</post-id>	</item>
	</channel>
</rss>
