<?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>BI Monkey &#187; Analysis Services</title>
	<atom:link href="http://www.bimonkey.com/category/microsoft-bi/ssas/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bimonkey.com</link>
	<description>James Beresford on Microsoft BI and Consulting in Sydney, Australia</description>
	<lastBuildDate>Mon, 06 Sep 2010 00:59:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Managing your history data</title>
		<link>http://www.bimonkey.com/2010/05/managing-your-history-data/</link>
		<comments>http://www.bimonkey.com/2010/05/managing-your-history-data/#comments</comments>
		<pubDate>Tue, 11 May 2010 00:11:38 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Analysis Services]]></category>
		<category><![CDATA[Integration Services]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=762</guid>
		<description><![CDATA[This post is to an extent a small rant about some design decisions I have been constrained by on my current project. These decisions were made predominantly for one fairly bad reason: it made the architect&#8217;s life easier (apologies to the architects if they are reading &#8211; but these were bad choices!)
The design choices in question [...]]]></description>
			<content:encoded><![CDATA[<p>This post is to an extent a small rant about some design decisions I have been constrained by on my current project. These decisions were made predominantly for one fairly bad reason: it made the architect&#8217;s life easier (apologies to the architects if they are reading &#8211; but these were bad choices!)</p>
<p>The design choices in question are around the managing of history data. In one component of the system it relates to Database storage design, the other relates to Cube storage design. In both cases the history data is stored in a separate location to the &#8220;current&#8221; data.</p>
<h2>Databases: Why separate history tables are a bad idea</h2>
<p>The first &#8211; and most compelling &#8211; reason for not storing your history data in separate tables to your current tables is that it increases complexity for users. Instead of having one location to look for data, your users now have to use two.</p>
<p>The second compelling reason is that there is no point to doing this from a storage point of view. SQL 2005 &amp; 2008 (<span style="text-decoration: underline;">Enterprise</span> editions only, admittedly) provide <a title="Partitioned Tables and Indexes in SQL Server 2005" href="http://msdn.microsoft.com/en-us/library/ms345146(SQL.90).aspx">partitioning</a>. This enables the contents of an individual table to be stored in separate locations on different <a title="Using Files and Filegroups" href="http://msdn.microsoft.com/en-us/library/ms187087.aspx">filegroups</a>. This means that you can store your current days data in one location and your history in a different one. The reason for doing this is the same as splitting it into separate tables &#8211; that querying the current section will be faster than the historic section.  In theory queries against partitioned tables should in fact be faster as the current data is now no longer in the same filegroup as the history data.</p>
<p>Now, there is an overhead associated with designing and maintaining partitions but I don&#8217;t see that it is significantly larger than that required to deal with the process required to archive data into separate tables on a daily basis. Additionally when maintaining separate history tables, you need to separate out every single table, whether it gets 10 rows a day or 10 million. With partitioning you can just target the large tables that need that focus.</p>
<p>There are other downsides to maintaining separate tables. If you make a change to a table design, you need to do it in 2 places.  You also need to remember to update your history processes. If your history process fails, you can end up with users getting unexpected query results or ETL process failures when the system loads the next day&#8217;s data into the current tables &#8211;  and untangling it becomes a real mess. If your partition processes fail to run, you just have too much data in one filegroup for a while &#8211; unlikely to be fatal.</p>
<p>So if you have large tables you need to split out for performance purposes &#8211; do it at the back end, using the power of the database &#8211; which <strong>is</strong> designed to store data efficiently. Keep it away from the users &#8211; they neither need to know or care about your need to keep the data separate. If you want to give them a single object to query with the current day&#8217;s data, just use views.</p>
<h2>Cubes: Why a separate history Cube is a bad idea</h2>
<p>Much of the above applies here &#8211; <a title="Managing Analysis Services Partitions" href="http://msdn.microsoft.com/en-us/library/ms175604.aspx">SSAS also has partitions</a> &#8211; so you can again store your historic and current data in separate physical locations with the users being totally unaware of this. Again there is overhead in maintenance, but this will also balance out with the maintenance and risks associated with maintaining two identical cubes that only differ in terms of data source.</p>
<h2>Use your storage options!</h2>
<p>So without banging on about the same things any further, please consider the following two points whenever considering managing your history data:</p>
<ol>
<li>How does what i&#8217;m planning affect my users?</li>
<li>How does what i&#8217;m planning leverage the platforms capabilities?</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2010/05/managing-your-history-data/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>First experiences with Project Gemini</title>
		<link>http://www.bimonkey.com/2009/10/first-experiences-with-project-gemini/</link>
		<comments>http://www.bimonkey.com/2009/10/first-experiences-with-project-gemini/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 22:54:05 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Analysis Services]]></category>
		<category><![CDATA[Project Gemini]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=642</guid>
		<description><![CDATA[What are my Gemini First Impressions?
I&#8217;m one of the chosen many who have access to the Gemini CTP2 &#8211; and had my first hands on experience with Gemini yesterday. I was up and running with it very quickly and grinning very shortly afterwards. The time it took me from connecting to the AdventureworksDW to producing [...]]]></description>
			<content:encoded><![CDATA[<h2>What are my Gemini First Impressions?</h2>
<p>I&#8217;m one of the chosen many who have access to the Gemini CTP2 &#8211; and had my first hands on experience with Gemini yesterday. I was up and running with it very quickly and grinning very shortly afterwards. The time it took me from connecting to the AdventureworksDW to producing a nice interactive &#8220;super&#8221; pivot table with slicers and very rapid response was very short.</p>
<p>As someone with experience of being an analyst, Gemini looks like a great tool for rapidly accessing and manipulating data. You connect directly to your data source (which doesn&#8217;t <em>have </em>to be SQL Server, btw), create some relationships and start playing. There are some new formulas to understand, but if you can work with a relational database this stuff will be a breeze. The response times are impressive, as are the connectivity options once you have finished. A Gemini workbook can become a data source for reports and deployed to MOSS without losing its connectivity as it falls into Excel Services.</p>
<h2>Is this a Data Warehouse Killer?</h2>
<p>One of my contemporaries said he was very concerned about Gemini leading to the next generation of <a title="spreadmart" href="http://en.wikipedia.org/wiki/Spreadmart">spreadmarts</a>, and that it could damage the market for Data Warehouses. I half agree, half disagree.</p>
<p>Firstly, the concern that Gemini will create the next spreadmart nightmare. Yes, it will create a new mess of user created, uncentralised data. However &#8211; as with spreadmarts &#8211; we will as an industry learn from this and find a way to manage it. Only this time we have prior experience of the phenomenon. A further mitigation factor for this risk is that I see the number of people using Gemini will be smaller than those using Excel. Those people will also be more likely to be analysts and hopefully more conscious of the risks of a Gemini-mart.</p>
<p>Will it kill the Data Warehouse? Probably not &#8211; analysts &#8211; the market for Gemini &#8211; don&#8217;t want to spend their time preparing and cleaning data. The DW will remain a good source of clean data for analysts to work with, and will remain a valuable part of the enterprise BI suite. It may remove the need for some warehouses &#8211; especially those based on clean data sources. I can also see it opening the door for new warehouses &#8211; as Gemini will make more data sources available to analysts. They will see it, play with it &#8211; declare it as important and bring it into the warehouse. So overall I expect the impact to be neutral.</p>
<h2>So how does the BI Monkey feel about Gemini?</h2>
<p>Easy &#8211; very, very excited!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2009/10/first-experiences-with-project-gemini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Term Extraction Transformation and &#8220;Animal Farm&#8221;</title>
		<link>http://www.bimonkey.com/2009/07/the-term-extraction-transformation/</link>
		<comments>http://www.bimonkey.com/2009/07/the-term-extraction-transformation/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 08:25:00 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Data mining]]></category>
		<category><![CDATA[Integration Services]]></category>
		<category><![CDATA[Data Mining]]></category>
		<category><![CDATA[Term Extraction]]></category>
		<category><![CDATA[Text Mining]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=436</guid>
		<description><![CDATA[In this post I will be covering the Term Extraction Transformation. The sample package can be found here for 2005 and guidelines on use are here. Todays exercise will be a fun one as i&#8217;m going to apply the transformation to George Orwell&#8217;s book Animal Farm &#8211; a copy of which I obtained in text form [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 264px"><img title="The Term Extraction Transformation" src="http://www.bimonkey.com/uploads/componentreview/term1.jpg" alt="b" width="254" height="66" /><p class="wp-caption-text">Fig 1: The Term Extraction Transformation</p></div>
<p>In this post I will be covering the Term Extraction Transformation. The sample package can be found <a title="SQL 2005 SSIS Term Extraction Sample (Right Click, Save As)" href="http://www.bimonkey.com/uploads/componentreview/Term%20Extraction%20Transformation%20Basics%202005.zip">here for 2005</a> and guidelines on use are <a title="Using samples from BI Monkey" href="http://www.bimonkey.com/support/using-ssis-samples-from-this-site/">here</a>. Todays exercise will be a fun one as i&#8217;m going to apply the transformation to George Orwell&#8217;s book Animal Farm &#8211; a copy of which I obtained in text form from <a title="Project Gutenburg Australia" href="http://gutenberg.net.au/">Project Gutenburg Australia</a>.</p>
<h2>What does the Term Extraction Transformation do?</h2>
<p>In simplest terms it can extract individual nouns and collections of nouns and adjectives from text (these are the &#8220;Terms&#8221;) and returns them with a frequency count or score.In my example, a common <strong>Noun </strong>term is &#8220;Animal&#8221;, and a common <strong>Noun Phrase </strong>term is &#8220;Animal Farm&#8221;.</p>
<p>Because it uses an internal dictionary to simplify terms to identify repeated elements &#8211; such as removing plurals &#8211; it only works for English text. The dictionary is not exposed and cannot be edited, nor can the component be pointed at a custom dictionary of your choosing, so like the Fuzzy Lookup it is a bit of a black box in terms of your ability to tweak its operation &#8211; the algorithms and dictionary are fixed &#8211; i&#8217;ll pick up some flaws with this later. The only real control you can have over the content of the output is the use of an <strong>Exclusion List</strong>, which allows you to feed a list of terms to ignore into the component.</p>
<h2>Configuring the Term Extraction Transformation</h2>
<div class="wp-caption alignnone" style="width: 369px"><img title="The Term Extraction Transformation - The Term Extraction Tab" src="http://www.bimonkey.com/uploads/componentreview/term2.jpg" alt="b" width="359" height="303" /><p class="wp-caption-text">Fig 2: The Term Extraction Tab</p></div>
<p>The first thing to configure is the input column on the &#8220;Term Extraction&#8221; tab &#8211; this transformation accepts a single input column which must be either a Unicode Text Stream or Unicode String. In the example package i&#8217;ve simply used a Data Conversion task to convert my Non-Unicode input stream prior to the Term Extraction. You can also assign custom names to the Term and Score columns as well.</p>
<div class="wp-caption alignnone" style="width: 578px"><img title="The Term Extraction Transformation - The Exclusion Tab" src="http://www.bimonkey.com/uploads/componentreview/term3.jpg" alt="b" width="568" height="234" /><p class="wp-caption-text">Fig 3: The Exclusion Tab</p></div>
<p>Next up is to specify your Exclusion list, if you are using one &#8211; this must be in the form of a single column in a table in either a SQL Server or Access Database (<a href="https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=249043">apparently Excel is also an undocumented  option</a>) .In my example I have used the Name column of the Adventureworks Departments table, so the names of any Departments that appear in the text won&#8217;t appear in the output. Admittedly this is unlikely in Animal Farm, but if you were web mining your own website may choose to ignore your company name as it will appear often and may tell you nothing.</p>
<div class="wp-caption alignnone" style="width: 501px"><img title="The Term Extraction Transformation - Advanced Tab" src="http://www.bimonkey.com/uploads/componentreview/term4.jpg" alt="b" width="491" height="310" /><p class="wp-caption-text">Fig 4: The Advanced Tab</p></div>
<p>The final page is the most important in terms of affecting the output. <strong>Term Type</strong> controls whether the component returns Nouns, Noun Phrases &#8211; or both. <strong>Score type</strong> controls whether the score returned is a simple count or the TFIDF &#8211; the Inverse Document Frequency &#8211; TFIDF of a Term T = (frequency of T) * log( (#rows in Input) / (#rows having T) ). I&#8217;m sure that&#8217;s a useful number to someone. <strong>Parameters</strong> sets the minimum frequency a term has to have before it will be output &#8211; obviously a setting of 1 would  return every siingle noun and /or noun phrase found. Maximum length of term sets the maximum number of words in a term. Finally <strong>Options</strong> sets the case sensitivity of the search.</p>
<h2>The Term Extraction Transformations&#8217; dictionary limits</h2>
<p>The problem with this component stems from its black box dictionary which limits how well it can handle data. As an example, despite it claiming to remove plurals, if you look in the results of the example package, both Commandment and Commandments appear as distinct terms. If you extend this to the real world &#8211; say, mining emails or web pages &#8211; misspellings are common, product names are often nonsensical from a dictionary point of view &#8211; and a custom dictionary would allow you to work around that. As it is you would end up having to fix it after extracting it.</p>
<p>By adding a custom dictionary, or allowing it to be extended in the reverse of an exclusion table, this component would become more useful. I&#8217;ve added a <a title="SSIS Term Extraction Transformation Custom Dictionary" href="https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=474073">connect article suggesting this</a> &#8211; please vote it up if you think it will improve your lot.</p>
<h2>When would you use the Term Extraction Transformation?</h2>
<p><a title="Douglas Laudenschlager @ http://dougbert.com/" href="http://dougbert.com/">Douglas Laudenschlager</a> comments <a title="Text Mining with Term Lookup and Term Extraction" href="http://dougbert.com/blogs/dougbert/archive/2008/05/24/text-mining-with-term-lookup-and-term-extraction.aspx">here on some scenarios envisaged by Microsoft Research in China for use of terms within text data for mining</a>. It should be applied to situations where you need to trawl through large amounts of (English) text data to pull out common terms. One use I attempted when learning SSIS was to try and emulate the <a title="Quackometer" href="http://www.quackometer.net/">Quackometer</a>, a web based tool that tries to analyse web pages and determine if their content is valid science or junk science. I did this by pulling down the web pages as text, running them through the Term Extraction and then trying to detect common valid and junk science terms (and using an Exclusion list to remove common HTML terms). I never finished it but it remains a lurking project which may yet reappear on these pages.</p>
<p>MSDN Documentation for the Term Extraction Transformation can be found here for <a title="SQL 2008 Term Extraction Transformation Documentation on MSDN" href="http://msdn.microsoft.com/en-us/library/ms141809.aspx">2008</a> and here for <a title="SQL 2005 Term Extraction Transformation Documentation on MSDN" href="http://msdn.microsoft.com/en-us/library/ms141809(SQL.90).aspx">2005</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2009/07/the-term-extraction-transformation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A caution on using Dimensional DSVs in Data Mining &#8211; part 2</title>
		<link>http://www.bimonkey.com/2009/06/a-caution-on-using-dimensional-dsvs-in-data-mining-part-2/</link>
		<comments>http://www.bimonkey.com/2009/06/a-caution-on-using-dimensional-dsvs-in-data-mining-part-2/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 02:08:31 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Data mining]]></category>
		<category><![CDATA[Data Mining]]></category>
		<category><![CDATA[DSV]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=343</guid>
		<description><![CDATA[As a followup to this post I have found that not only does using a table external to the one being mined to provide a grouping fail to actually group within the model, it also confuses the Mining Legend in the Mining Model Viewer.
What I was seeing in the Mining Legend for a node in [...]]]></description>
			<content:encoded><![CDATA[<p>As a followup to <a title="A caution on using Dimensional DSVs in Data Mining" href="http://www.bimonkey.com/2009/06/a-caution-on-using-dimensional-dsvs-in-data-mining/">this post</a> I have found that not only does using a table external to the one being mined to provide a grouping fail to actually group within the model, it also confuses the Mining Legend in the Mining Model Viewer.</p>
<p>What I was seeing in the Mining Legend for a node in a Decision Tree was like this:</p>
<p>Total Cases: 100</p>
<p>Category A: 10 Cases</p>
<p>Category B: 25 Cases</p>
<p>Category C: 0 Cases</p>
<p>Category D: 9 Cases</p>
<p>&#8230; so the Total cases and the cases displayed didn&#8217;t tie up. By digging further using the Microsoft Mining Content Viewer and looking at the NODE_DISTRIBUTION I saw that there were multiple rows for the categories, and the Mining Legend was just picking one of those values.</p>
<p>So if you find youself looking at a node and wondering why the numbers don&#8217;t add up &#8211; it&#8217;s because your grouping hasn&#8217;t been used by the model.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2009/06/a-caution-on-using-dimensional-dsvs-in-data-mining-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A caution on using Dimensional DSVs in Data Mining</title>
		<link>http://www.bimonkey.com/2009/06/a-caution-on-using-dimensional-dsvs-in-data-mining/</link>
		<comments>http://www.bimonkey.com/2009/06/a-caution-on-using-dimensional-dsvs-in-data-mining/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 23:23:39 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Data mining]]></category>
		<category><![CDATA[Data Mining]]></category>
		<category><![CDATA[DSV]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=338</guid>
		<description><![CDATA[If you are using a dimensional-style DSV in a Data Mining project, such as below:
Be aware that if you include a column from a Dimension table in your Mining Structure, the model will actually identify each key entry on the source table as a distinct value, rather than each distinct value in the Dimension table. [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">If you are using a dimensional-style DSV in a Data Mining project, such as below:</div>
<div class="wp-caption alignnone" style="width: 393px"><img title="A Dimensional DSV" src="http://www.bimonkey.com/uploads/ssas/dsv1.jpg" alt="b" width="383" height="223" /><p class="wp-caption-text">Fig 1: A Dimensional DSV</p></div>
<p>Be aware that if you include a column from a Dimension table in your Mining Structure, the model will actually identify each key entry on the <em>source</em> table as a distinct value, rather than each distinct value in the Dimension table. I found this out because I added a grouping category to one of my dimensional tables &#8211; a simple high &#8211; medium &#8211; low group &#8211; and there were multiple values in the attribute states for each grouping, as below:</p>
<div class="wp-caption alignnone" style="width: 218px"><img title="Mining Legend" src="http://www.bimonkey.com/uploads/ssas/mininglegend1.jpg" alt="b" width="208" height="157" /><p class="wp-caption-text">Fig 2: Mining Legend</p></div>
<p>To work around this you will need to add a Named Calculation to get the group on the main table, or convert the main table to a Named Query.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2009/06/a-caution-on-using-dimensional-dsvs-in-data-mining/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick book review: Data Mining with SQL Server 2005</title>
		<link>http://www.bimonkey.com/2009/06/quick-book-review-data-mining-with-sql-server-2005/</link>
		<comments>http://www.bimonkey.com/2009/06/quick-book-review-data-mining-with-sql-server-2005/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 13:50:08 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Data mining]]></category>
		<category><![CDATA[Data Mining]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=322</guid>
		<description><![CDATA[I&#8217;ve just about squeezed all I can from Data Mining with SQL Server 2005 by ZhaoHui Tang and Jamie MacLennan &#8211; both of whom were part of the Data Mining development team for SQL Server 2005.
This book provides a lot of what seems to be absent from BOL and MSDN &#8211; it goes through most [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just about squeezed all I can from <strong>Data Mining with SQL Server 2005</strong> by ZhaoHui Tang and Jamie MacLennan &#8211; both of whom were part of the Data Mining development team for SQL Server 2005.</p>
<p>This book provides a lot of what seems to be absent from BOL and MSDN &#8211; it goes through most facets of Data Mining using SQL server reasonably thoroughly, but from a very technical angle. It is littered with big chunks of code and feels and reads like technical documentation most of the way through. It doesn&#8217;t provide much insight into how to carry out effective Data Mining or interpret results &#8211; what little is there is useful, but it&#8217;s a slog to find it.</p>
<p>As a technical reference I&#8217;d recommend it, not least because of the dearth of decent documentation. If you&#8217;re a beginner trying to work out how to use the product to get results, you need to look elsewhere.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2009/06/quick-book-review-data-mining-with-sql-server-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cannot View Data Mining Model in BIDS &#8211; function does not exist</title>
		<link>http://www.bimonkey.com/2009/06/cannot-view-data-mining-model-in-bids-function-does-not-exist/</link>
		<comments>http://www.bimonkey.com/2009/06/cannot-view-data-mining-model-in-bids-function-does-not-exist/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 02:08:56 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Analysis Services]]></category>
		<category><![CDATA[Data Mining]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=315</guid>
		<description><![CDATA[I&#8217;d been running some Naive Bayes Data Mining models without problems as part of initiating a Data Mining exercise, so it was time to move on and cut the data some different ways. So I set up a Decision Tree model and it processed fine, but when I tried to view it a message box [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d been running some Naive Bayes Data Mining models without problems as part of initiating a Data Mining exercise, so it was time to move on and cut the data some different ways. So I set up a Decision Tree model and it processed fine, but when I tried to view it a message box appeared telling me it wasn&#8217;t going to co-operate:</p>
<p><span style="color: #ff0000;">The tree graph cannot be created because of the following error:</span></p>
<p><span style="color: #ff0000;">&#8216;Query (1,6) The </span></p>
<p><span style="color: #ff0000;">&#8216;[System].[Microsoft].[AnalysisServices].[System].[DataMining].[DecisionTrees].[GetTreeScores] function does not exist.&#8217;.</span></p>
<p><a title="Error while trying to load the mining model in the mining model viewer" href="http://social.msdn.microsoft.com/forums/en-US/sqldatamining/thread/2b51695a-460f-4bfd-8502-fc2fe8b15a63/ ">Fortunately someone had hit this before</a>, as the solution is rather obscure. The install I am working against is non-standard, being split across two drives. What had happened is the path for the Data Mining dll&#8217;s set up in the install process didn&#8217;t actually match where they were placed.</p>
<p>So when I looked under the assembly location &#8211; SSMS &gt; AS Server &gt; Assemblies &gt; System &gt; Properties, the Source Path referenced a dll that didn&#8217;t actually exist &#8211; so it appears this incorrect path does not raise an error when trying to start the server. To fix it, I located <span>located where the dll really was, </span>then updated the config files where this path is stored &#8211; <span><span style="color: #800080;">System.0.asm.xml</span> and V<span style="color: #800080;">BAMDX.0.asm.xml</span> &#8211; to point to that path.</span></p>
<p><span>A restart of the server and the models reprocessed and I could happily view the output!<br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2009/06/cannot-view-data-mining-model-in-bids-function-does-not-exist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSAS Training Resource</title>
		<link>http://www.bimonkey.com/2009/04/ssas-training-resource/</link>
		<comments>http://www.bimonkey.com/2009/04/ssas-training-resource/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 07:37:54 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Analysis Services]]></category>
		<category><![CDATA[Professional Certification and Training]]></category>
		<category><![CDATA[Training Sites]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=95</guid>
		<description><![CDATA[I have added a link to Craig Utley&#8217;s excellent SSAS training video resource site LearnMicrosoftBI.com, which contains training videos on a variety of subjects in SSAS &#8211; dimensional modelling, Actions and the one I found most useful explaining the tricky but critical subject of Attribute Relationships (Video SSAS 109). Recommended for anyone starting out in [...]]]></description>
			<content:encoded><![CDATA[<p>I have added a link to Craig Utley&#8217;s excellent SSAS training video resource site <a title="Craing Utley's LearnMicrosoftBI.com" href="http://www.learnmicrosoftbi.com/">LearnMicrosoftBI.com</a>, which contains training videos on a variety of subjects in SSAS &#8211; dimensional modelling, Actions and the one I found most useful explaining the tricky but critical subject of Attribute Relationships (Video SSAS 109). Recommended for anyone starting out in SSAS or needing concepts clarifying.</p>
<p>Registration is required to download the videos (not sure why) &#8211; but it seems to generate no spam so not a big issue, and the content is very high quality for free content.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2009/04/ssas-training-resource/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
