<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="Joomla! 1.5 - Open Source Content Management" --><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
	<channel>
		<title>Microsoft SQL Server Analysis Services 2005/2008 articles - MDX, performance, management</title>
		<description />
		<link>http://www.ssas-info.com/analysis-services-articles</link>
		<lastBuildDate>Fri, 10 Feb 2012 19:05:16 +0000</lastBuildDate>
		<generator>Joomla! 1.5 - Open Source Content Management</generator>
		<language>en-gb</language>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SSAS_Articles" /><feedburner:info uri="ssas_articles" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
			<title>DAX Measures, MDX Measures and Type</title>
			<link>http://feedproxy.google.com/~r/SSAS_Articles/~3/XMAXhGs2ikU/3285-dax-measures-mdx-measures-and-type</link>
			<guid isPermaLink="false">http://www.ssas-info.com/analysis-services-articles/98-tabular-dax/3285-dax-measures-mdx-measures-and-type</guid>
			<description>&lt;P&gt;&lt;STRONG&gt;Reposted from &lt;A href="http://cwebbbi.wordpress.com/2012/02/08/dax-measures-mdx-measures-and-type/" target=_blank mce_href="http://cwebbbi.wordpress.com/2012/02/08/dax-measures-mdx-measures-and-type/"&gt;Chris Webb's blog&lt;/A&gt; with the author's permission. &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;One of the strengths of MDX is the fact that calculated measures in MDX are not strongly typed: they return variants. This means that it’s possible to create calculations that return values of several different types, such as the example below that returns text in some cases and integers in others:&lt;/P&gt;
&lt;HR id=system-readmore&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;WITH &lt;BR&gt;MEMBER MEASURES.DEMO AS &lt;BR&gt;IIF( &lt;BR&gt;[Measures].[Internet Sales Amount]&amp;gt;7000000 &lt;BR&gt;, "TOO HIGH!" &lt;BR&gt;, [Measures].[Internet Sales Amount])&lt;/P&gt;
&lt;P&gt;SELECT &lt;BR&gt;{[Measures].[Internet Sales Amount], MEASURES.DEMO} &lt;BR&gt;ON 0, &lt;BR&gt;[Date].[Calendar Year].[Calendar Year].MEMBERS ON 1 &lt;BR&gt;FROM [Adventure Works]&lt;/P&gt;
&lt;P&gt;&lt;A href="http://cwebbbi.files.wordpress.com/2012/02/image.png"&gt;&lt;IMG style="BACKGROUND-IMAGE: none; MARGIN: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; PADDING-TOP: 0px" title=image border=0 alt=image src="http://cwebbbi.files.wordpress.com/2012/02/image_thumb.png?w=244&amp;amp;h=148" width=244 height=148&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;This gives you a lot of flexibility when writing calculations but it also can be a big problem when you want to extract data from a cube into another system, as anyone who has tried to do this will know.&lt;/P&gt;
&lt;P&gt;In DAX and the Tabular model, on the other hand measures, like columns (calculated or otherwise) are strongly typed. Although you can’t see the type of a measure in SQL Server Data Tools when you create it, the automatically inferred type can be found in the &lt;A href="http://technet.microsoft.com/en-gb/library/ms126250(SQL.110).aspx"&gt;MDSCHEMA_MEASURES&lt;/A&gt; schema rowset and which be queried as follows:&lt;/P&gt;
&lt;P&gt;select * &lt;BR&gt;from $system.mdschema_measures&lt;/P&gt;
&lt;P&gt;&lt;A href="http://cwebbbi.files.wordpress.com/2012/02/image1.png"&gt;&lt;IMG style="BACKGROUND-IMAGE: none; MARGIN: 0px 5px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; PADDING-TOP: 0px" title=image border=0 alt=image src="http://cwebbbi.files.wordpress.com/2012/02/image_thumb1.png?w=533&amp;amp;h=282" width=533 height=282&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;If you try to use an expression for a measure like this that, as in my first example, could return text or an integer:&lt;/P&gt;
&lt;P&gt;testtype:=IF(SUM(‘Internet Sales’[Sales Amount Value])&amp;gt;1000, 1, "test") &lt;BR&gt;&lt;BR&gt;Then you get the error: &lt;BR&gt;&lt;BR&gt;&lt;EM&gt;Measure ‘Internet Sales’[testtype] : The second and third arguments of function IF have different data types. This is not supported.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;On balance I think I prefer having measures strongly typed, and for one thing it opens up the possibility of using the Tabular model for certain forms of ETL. I’ve already seen one customer of mine replace a CTE in TSQL by loading their data into Tabular and using the &lt;A href="http://www.powerpivotblog.nl/powerpivot-denali-parent-child-using-dax"&gt;PATH functions&lt;/A&gt; instead, getting some significant performance benefits as a result, and I’m sure there will be plenty of other scenarios where ETL requires complex calculations to take place that the incredible performance of DAX will make loading all the data into a Tabular model (even if the final destination of the data is a relational data warehouse) a serious option.&lt;/P&gt;
&lt;HR&gt;

&lt;TABLE class=mceItemTable border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;IMG alt=chris-webb src="http://www.ssas-info.com/images/stories/authors/chris-webb.png" width=60 height=82 mce_src="http://www.ssas-info.com/images/stories/authors/chris-webb.png"&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;Chris has been working with Microsoft BI tools since he started using beta 3 of OLAP Services back in the late 90s. Since then he has worked with Analysis Services in a number of roles (including three years spent with Microsoft Consulting Services) and he is now an independent consultant specialising in complex MDX, Analysis Services cube design and Analysis Services query performance problems. His company website can be found at &lt;A href="http://www.crossjoin.co.uk/" target=_blank mce_href="http://www.crossjoin.co.uk"&gt;http://www.crossjoin.co.uk&lt;/A&gt; and his blog can be found at &lt;A href="http://cwebbbi.wordpress.com/" mce_href="http://cwebbbi.wordpress.com"&gt;http://cwebbbi.wordpress.com&lt;/A&gt; . &lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;HR&gt;

&lt;DIV id=article_full_f2p&gt;&lt;BR&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/0bCG0_CodlBGDuDxu-G-pADffwk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/0bCG0_CodlBGDuDxu-G-pADffwk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/0bCG0_CodlBGDuDxu-G-pADffwk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/0bCG0_CodlBGDuDxu-G-pADffwk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SSAS_Articles/~4/XMAXhGs2ikU" height="1" width="1"/&gt;</description>
			<author>author-chris-webb@ssas-info.com (Chris Webb)</author>
			<category>Tabular DAX</category>
			<pubDate>Wed, 08 Feb 2012 22:50:32 +0000</pubDate>
		<feedburner:origLink>http://www.ssas-info.com/analysis-services-articles/98-tabular-dax/3285-dax-measures-mdx-measures-and-type</feedburner:origLink></item>
		<item>
			<title>SSAS 2012 RC0 DMX IMPORT bug Workaround</title>
			<link>http://feedproxy.google.com/~r/SSAS_Articles/~3/vmynS0kBK-I/3284-ssas-2012-rc0-dmx-import-bug-workaround</link>
			<guid isPermaLink="false">http://www.ssas-info.com/analysis-services-articles/56-data-mining/3284-ssas-2012-rc0-dmx-import-bug-workaround</guid>
			<description>&lt;P&gt;In SSAS 2012 RC0 Dimensional, importing a model with dependencies using the DMX IMPORT statement does not import data source views from a backup made with SSAS 2005, 2008 or 2008 R2. Thus, the imported models cannot be processed and used. I tried with model exported from SSAS 2005 SP4 and SSAS 2008 R2 RTM. I successfully imported the same models in SSAS 2008 R2 RTM. Therefore, the problem must be in SSAS 2012 RC0. However, when I exported a model with dependencies from SQL 2012 RC0, I successfully imported it back to a new database in SQL 2012 RC0. This time also DSV was imported. it seems like import from earlier versions to 2012 RC0 has problems. &lt;/P&gt;
&lt;HR id=system-readmore&gt;

&lt;P&gt;&lt;A href="http://blogs.solidq.com/dsarka/Post.aspx?ID=133&amp;amp;title=SSAS+2012+RC0+DMX+IMPORT+bug+Workaround" target=_blank mce_href="http://blogs.solidq.com/dsarka/Post.aspx?ID=133&amp;amp;title=SSAS+2012+RC0+DMX+IMPORT+bug+Workaround"&gt;Read more...&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ahJxhcnmr2gTyxNU84dNpFMvHos/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ahJxhcnmr2gTyxNU84dNpFMvHos/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ahJxhcnmr2gTyxNU84dNpFMvHos/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ahJxhcnmr2gTyxNU84dNpFMvHos/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SSAS_Articles/~4/vmynS0kBK-I" height="1" width="1"/&gt;</description>
			<author>webadmin@ssas-info.com (Dejan Sarka)</author>
			<category>Data Mining</category>
			<pubDate>Wed, 08 Feb 2012 17:48:58 +0000</pubDate>
		<feedburner:origLink>http://www.ssas-info.com/analysis-services-articles/56-data-mining/3284-ssas-2012-rc0-dmx-import-bug-workaround</feedburner:origLink></item>
		<item>
			<title>Tabular verse Dimensional Design Concepts</title>
			<link>http://feedproxy.google.com/~r/SSAS_Articles/~3/HnKPkc0m8MY/3283-tabular-verse-dimensional-design-concepts</link>
			<guid isPermaLink="false">http://www.ssas-info.com/analysis-services-articles/97-tabular/3283-tabular-verse-dimensional-design-concepts</guid>
			<description>&lt;p&gt;The multidimensional model appears to provide a richer environment for model design. However, for the case of snapshot fact tables, the tabular design may offer a much faster design and refreshing options. This post looks at the snapshot design and how business requirements are modelled in both multidimensional and tabular platforms. &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RmMQC39to6_1qAmXHYjKQFGGX-I/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RmMQC39to6_1qAmXHYjKQFGGX-I/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/RmMQC39to6_1qAmXHYjKQFGGX-I/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RmMQC39to6_1qAmXHYjKQFGGX-I/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SSAS_Articles/~4/HnKPkc0m8MY" height="1" width="1"/&gt;</description>
			<author>webadmin@ssas-info.com (Paul te Braak)</author>
			<category>Tabular</category>
			<pubDate>Wed, 08 Feb 2012 17:48:26 +0000</pubDate>
		<feedburner:origLink>http://www.ssas-info.com/analysis-services-articles/97-tabular/3283-tabular-verse-dimensional-design-concepts</feedburner:origLink></item>
		<item>
			<title>Examining MDX Query performance using Block Computation</title>
			<link>http://feedproxy.google.com/~r/SSAS_Articles/~3/03xFPSI4YtU/3282-examining-mdx-query-performance-using-block-comput</link>
			<guid isPermaLink="false">http://www.ssas-info.com/analysis-services-articles/50-mdx/3282-examining-mdx-query-performance-using-block-comput</guid>
			<description>&lt;p&gt;In 2007 I read a very interesting blog by Mosha outlining how to Optimize a Count(Filter(.)) expression in MDX. Since then I have been particularly careful in writing MDX queries and also make sure to run it past the MDX Studio to check it. But quite frequently I come across queries on forums and blogs that take the machine and its resources for a ride and still question why aren't my queries faster when I have enough resources (disk space, RAM, paging, processors etc.). Its quite simple at times to change the query but in most occasions it is simply not possible to change the way the query returns data. Lets first get a sense of how the Analysis Services processes MDX queries. There are two major parts of the Analysis Services engine.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RIxGdoZ7XJPhjJl1CfGMrpu3vzk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RIxGdoZ7XJPhjJl1CfGMrpu3vzk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/RIxGdoZ7XJPhjJl1CfGMrpu3vzk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RIxGdoZ7XJPhjJl1CfGMrpu3vzk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SSAS_Articles/~4/03xFPSI4YtU" height="1" width="1"/&gt;</description>
			<author>webadmin@ssas-info.com (Gautham KAMATH)</author>
			<category>MDX</category>
			<pubDate>Wed, 08 Feb 2012 17:47:29 +0000</pubDate>
		<feedburner:origLink>http://www.ssas-info.com/analysis-services-articles/50-mdx/3282-examining-mdx-query-performance-using-block-comput</feedburner:origLink></item>
		<item>
			<title>SSAS: optimizing processing query using reference dimension relationship</title>
			<link>http://feedproxy.google.com/~r/SSAS_Articles/~3/7b_RnDzCzoI/3281-ssas--optimizing-processing-query-using-reference-</link>
			<guid isPermaLink="false">http://www.ssas-info.com/analysis-services-articles/62-design/3281-ssas--optimizing-processing-query-using-reference-</guid>
			<description>&lt;p&gt;In one of my former posts titled "Select Facts with Reference and Many2Many relationships" i blogged about the usage of reference dimension relationships in cubes. In my current clientsituation i'm experiencing a major slowdown processing the cube. Some investigation learned that the reference relationsshiop seems to be the problem. In this blogpost i'll explain the problem, slowdown processing the cube, a solution, by replacing the load query and a conclusion. &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/E_slfxT-ptbnj3coCw2vcvcYaf4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/E_slfxT-ptbnj3coCw2vcvcYaf4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/E_slfxT-ptbnj3coCw2vcvcYaf4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/E_slfxT-ptbnj3coCw2vcvcYaf4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SSAS_Articles/~4/7b_RnDzCzoI" height="1" width="1"/&gt;</description>
			<author>webadmin@ssas-info.com (Hennie de Nooijer)</author>
			<category>Design</category>
			<pubDate>Wed, 08 Feb 2012 17:47:24 +0000</pubDate>
		<feedburner:origLink>http://www.ssas-info.com/analysis-services-articles/62-design/3281-ssas--optimizing-processing-query-using-reference-</feedburner:origLink></item>
		<item>
			<title>Profiling SSAS : where have my milliseconds gone ?!?</title>
			<link>http://feedproxy.google.com/~r/SSAS_Articles/~3/HGZatLMOZoM/3278-profiling-ssas---where-have-my-milliseconds-gone--</link>
			<guid isPermaLink="false">http://www.ssas-info.com/analysis-services-articles/66-mgmt/3278-profiling-ssas---where-have-my-milliseconds-gone--</guid>
			<description>&lt;p&gt;A short post to illustrate a pattern which I only recently clarified. Ever wondered why your "time" columns in a SSAS profiler trace had all .000 values for milliseconds (therefore giving you only a precision level of a second) ?&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/KaVzX4FZKaIRnzMJKQy2U06qogo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KaVzX4FZKaIRnzMJKQy2U06qogo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/KaVzX4FZKaIRnzMJKQy2U06qogo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KaVzX4FZKaIRnzMJKQy2U06qogo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SSAS_Articles/~4/HGZatLMOZoM" height="1" width="1"/&gt;</description>
			<author>webadmin@ssas-info.com (Guillaume Fourrat)</author>
			<category>Management</category>
			<pubDate>Tue, 07 Feb 2012 17:44:03 +0000</pubDate>
		<feedburner:origLink>http://www.ssas-info.com/analysis-services-articles/66-mgmt/3278-profiling-ssas---where-have-my-milliseconds-gone--</feedburner:origLink></item>
		<item>
			<title>ProcessUpdate and Partition Scans</title>
			<link>http://feedproxy.google.com/~r/SSAS_Articles/~3/glw4uft5YcU/3277-processupdate-and-partition-scans</link>
			<guid isPermaLink="false">http://www.ssas-info.com/analysis-services-articles/66-mgmt/3277-processupdate-and-partition-scans</guid>
			<description>&lt;p&gt;I'm working on minimizing the cube processing for a cube with some two billion rows in a fact table. I put together an ETL package that processes the dimensions with ProcessUpdate following by processing the latest partitions. I've noticed that processing one of the dimensions , which happens to be the largest (some 1 million rows) and most complicated dimension, resulted in partitions scans. The SQL Profiler showed the scans with the following events:   &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/qoguhBG-MCzQCjFLLhDJOMwAKoU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qoguhBG-MCzQCjFLLhDJOMwAKoU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/qoguhBG-MCzQCjFLLhDJOMwAKoU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qoguhBG-MCzQCjFLLhDJOMwAKoU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SSAS_Articles/~4/glw4uft5YcU" height="1" width="1"/&gt;</description>
			<author>webadmin@ssas-info.com (Teo Lachev)</author>
			<category>Management</category>
			<pubDate>Tue, 07 Feb 2012 17:44:01 +0000</pubDate>
		<feedburner:origLink>http://www.ssas-info.com/analysis-services-articles/66-mgmt/3277-processupdate-and-partition-scans</feedburner:origLink></item>
		<item>
			<title>Memory Settings in #Tabular #ssas (and Prepare for #msteched!)</title>
			<link>http://feedproxy.google.com/~r/SSAS_Articles/~3/xpYhQw9H650/3275-memory-settings-in--tabular--ssas--and-prepare-for</link>
			<guid isPermaLink="false">http://www.ssas-info.com/analysis-services-articles/97-tabular/3275-memory-settings-in--tabular--ssas--and-prepare-for</guid>
			<description>&lt;p&gt;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 go mainstream. I expect that many will consider a Tabular instance of Analysis Services similar to a Multidimensional one, also from a system engineer perspective, whereas there are many important differences. For example, the hardware required to scale up an Analysis Services instance is different (very different) between Tabular and Multidimensional, but this will be the topic for a future post. By now, I just want to make some consideration about memory settings.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/lpoaoKrWsO2mG8MQt6HUMZIoF1g/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lpoaoKrWsO2mG8MQt6HUMZIoF1g/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/lpoaoKrWsO2mG8MQt6HUMZIoF1g/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lpoaoKrWsO2mG8MQt6HUMZIoF1g/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SSAS_Articles/~4/xpYhQw9H650" height="1" width="1"/&gt;</description>
			<author>webadmin@ssas-info.com (Marco Russo)</author>
			<category>Tabular</category>
			<pubDate>Mon, 06 Feb 2012 22:20:30 +0000</pubDate>
		<feedburner:origLink>http://www.ssas-info.com/analysis-services-articles/97-tabular/3275-memory-settings-in--tabular--ssas--and-prepare-for</feedburner:origLink></item>
		<item>
			<title>SSAS Cache Isn't Making Cents</title>
			<link>http://feedproxy.google.com/~r/SSAS_Articles/~3/AusbVjVyB3M/3274-ssas-cache-isn--t-making-cents</link>
			<guid isPermaLink="false">http://www.ssas-info.com/analysis-services-articles/50-mdx/3274-ssas-cache-isn--t-making-cents</guid>
			<description>&lt;p&gt;I stole the pun from my Business Analyst, Mr. John Seiler Now on to my issue - when SSAS caches the value for my [Actual] measure, it seems to do so based on the results of the first query that requests that coordinate. In this particular cube, there's bunches of tiny fractions and depending on how you slice it, it aggregates a little different. This is a fun problem in itself, but the part that drives me (and the Finance department) crazy is that if you go and slice on something OTHER than that first query that created the cache, the values they see don't always add up to the "Grand Total" in Excel - aka. "All"&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ByFBd-tCjNhfOcooaAa3eA13zSo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ByFBd-tCjNhfOcooaAa3eA13zSo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ByFBd-tCjNhfOcooaAa3eA13zSo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ByFBd-tCjNhfOcooaAa3eA13zSo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SSAS_Articles/~4/AusbVjVyB3M" height="1" width="1"/&gt;</description>
			<author>webadmin@ssas-info.com (Tim Laqua)</author>
			<category>MDX</category>
			<pubDate>Mon, 06 Feb 2012 22:20:28 +0000</pubDate>
		<feedburner:origLink>http://www.ssas-info.com/analysis-services-articles/50-mdx/3274-ssas-cache-isn--t-making-cents</feedburner:origLink></item>
		<item>
			<title>Working with SSAS traces and the dreaded Textdata in SSMS</title>
			<link>http://feedproxy.google.com/~r/SSAS_Articles/~3/ADuk1sxaVWo/3273-working-with-ssas-traces-and-the-dreaded-textdata-</link>
			<guid isPermaLink="false">http://www.ssas-info.com/analysis-services-articles/66-mgmt/3273-working-with-ssas-traces-and-the-dreaded-textdata-</guid>
			<description>&lt;p&gt;For good or bad i regularly work with SSAS traces that i have saved to a table and many years ago i was regularly frustrated by the fact that the contents of the textdata column containing the query is always truncated at 65535 characters.  &lt;/p&gt;&lt;p&gt; You may think 65535 characters should cover most queries but once Excel gets to work it generates some huge queries! &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/oUkmiIOIGXrq0oqUeWLJ5h0-AGo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/oUkmiIOIGXrq0oqUeWLJ5h0-AGo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/oUkmiIOIGXrq0oqUeWLJ5h0-AGo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/oUkmiIOIGXrq0oqUeWLJ5h0-AGo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SSAS_Articles/~4/ADuk1sxaVWo" height="1" width="1"/&gt;</description>
			<author>webadmin@ssas-info.com (Andrew Calvett)</author>
			<category>Management</category>
			<pubDate>Mon, 06 Feb 2012 22:20:27 +0000</pubDate>
		<feedburner:origLink>http://www.ssas-info.com/analysis-services-articles/66-mgmt/3273-working-with-ssas-traces-and-the-dreaded-textdata-</feedburner:origLink></item>
	</channel>
</rss>

