Where is the documentation on internal procsHi<br><br>Where do I find the documentation on SSAS(DM) internal calls.  Example<br><br>CALL System.Microsoft.AnalysisServices.System.DataMining.AssociationRules.GetItemsets('Assoc MBA', 0, 1999, 5, 3, 250, 'Road Bottle Cage', false)<br><br>The &quot;0, 1999, 5&quot; escape me.  I can get the rest.<br><br>I have looked in BOL and zip and also googled but not a whole load better.<br><br>Thanks<br><br><br><br><br> © 2009 Microsoft Corporation. All rights reserved.Tue, 06 Jan 2009 09:37:13 Z74c8ae12-2ded-4f5a-b364-9f78cfa79d57http://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/74c8ae12-2ded-4f5a-b364-9f78cfa79d57#74c8ae12-2ded-4f5a-b364-9f78cfa79d57http://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/74c8ae12-2ded-4f5a-b364-9f78cfa79d57#74c8ae12-2ded-4f5a-b364-9f78cfa79d57Allan Mitchellhttp://social.msdn.microsoft.com/Profile/en-US/?user=Allan%20MitchellWhere is the documentation on internal procsHi<br><br>Where do I find the documentation on SSAS(DM) internal calls.  Example<br><br>CALL System.Microsoft.AnalysisServices.System.DataMining.AssociationRules.GetItemsets('Assoc MBA', 0, 1999, 5, 3, 250, 'Road Bottle Cage', false)<br><br>The &quot;0, 1999, 5&quot; escape me.  I can get the rest.<br><br>I have looked in BOL and zip and also googled but not a whole load better.<br><br>Thanks<br><br><br><br><br> Sun, 21 Dec 2008 21:34:09 Z2008-12-21T21:34:09Zhttp://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/74c8ae12-2ded-4f5a-b364-9f78cfa79d57#60f9784a-44c4-47f3-96e9-14392e201270http://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/74c8ae12-2ded-4f5a-b364-9f78cfa79d57#60f9784a-44c4-47f3-96e9-14392e201270Bogdan Crivathttp://social.msdn.microsoft.com/Profile/en-US/?user=Bogdan%20CrivatWhere is the documentation on internal procs The stored procedures were intended as an internal tool to help the Data Mining Viewers, so the documentation is scarce at best.<br>Here is the list of parameters for the GetItemsets stored procedure:<br>- miningModel ('Assoc MBA' in your case)<br>- start -- the first itemset to be returned, for itemsets pagination (0, in your case)<br>- end -- the last itemset to be returned, for itemsets pagination (1999, in your case)<br>- the sort order of the itemsets, as an integer representation of the enumeration below:<br>     public enum AssociationSortOrder<br>     {<br>      AscendingProbability   = 0,<br>      DescendingProbability   = 1,<br>      AscendingLift     = 2,<br>      DescendingLift     = 3,<br>      AscendingSupport    = 4,<br>      DescendingSupport    = 5,<br>      AscendingItemsetLength    = 6,<br>      DescendingItemsetLength   = 7,<br>      AscendingLexicographical  = 8,<br>      DescendingLexicographical = 9,<br>     }<br>Therefore, 5, in your case, means that the itemsets should be returned sorted by the support in descending order<br>- the minimum size of returned itemsets (3, in your example)<br>- the minimum support of returned itemsets (250, in your example)<br>- filter to be applied to the itemsets -- a .Net regular expression to be used as a filter on the returned itemsets ('Road Bottle Cage' in your example)<br>- a boolean flag telling whether the nested table name should be stripped from the textual representation of the itemset -- this maps to the Short Name UI checkbox (false, in your case)<br><br><br><hr class="sig">bogdan crivat [sql server data mining] / http://www.bogdancrivat.net/dmTue, 30 Dec 2008 18:57:51 Z2008-12-30T18:57:51Zhttp://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/74c8ae12-2ded-4f5a-b364-9f78cfa79d57#03ff674e-3de9-45e5-8b55-ba51cb46d998http://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/74c8ae12-2ded-4f5a-b364-9f78cfa79d57#03ff674e-3de9-45e5-8b55-ba51cb46d998Allan Mitchellhttp://social.msdn.microsoft.com/Profile/en-US/?user=Allan%20MitchellWhere is the documentation on internal procsThanks Bogdan although a shame as well.  I personally hate it when an application makes calls that a user has to &quot;guess at&quot;.  They do have other uses besides just helping your viewers.  What is I wanted to create my own cluster diagram in my own .Net web app.  I would call one of your internal procs for example.<br><br>CALL System.ARGetNodeGraph('[Assoc MBA]', 60)<br><br>This would allow me to see the clusters and the edges nicely.<br><br><br> Fri, 02 Jan 2009 09:11:19 Z2009-01-02T09:11:19Zhttp://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/74c8ae12-2ded-4f5a-b364-9f78cfa79d57#b76d8994-2029-45be-a175-b67a1dc6989ehttp://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/74c8ae12-2ded-4f5a-b364-9f78cfa79d57#b76d8994-2029-45be-a175-b67a1dc6989eBogdan Crivathttp://social.msdn.microsoft.com/Profile/en-US/?user=Bogdan%20CrivatWhere is the documentation on internal procs Allan, we recently started a series of blog postings covering the behavior of the data mining built-in viewers. Among other topics, we document the stored procedure calls made from the viewers. You can find this information at <a href="http://www.sqldataminingbook.com/dmbook/">http://www.sqldataminingbook.com/dmbook/</a><br><br> <hr class=sig> bogdan crivat [sql server data mining] / http://www.bogdancrivat.net/dmTue, 06 Jan 2009 08:25:13 Z2009-01-06T08:25:37Zhttp://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/74c8ae12-2ded-4f5a-b364-9f78cfa79d57#3d65a92e-3fb1-4ec2-8cf3-0a33fddc5a40http://social.msdn.microsoft.com/Forums/en-US/sqldatamining/thread/74c8ae12-2ded-4f5a-b364-9f78cfa79d57#3d65a92e-3fb1-4ec2-8cf3-0a33fddc5a40Allan Mitchellhttp://social.msdn.microsoft.com/Profile/en-US/?user=Allan%20MitchellWhere is the documentation on internal procsThanks Bogdan.<br><br>I have seen this site before and liked very much Jamie's &quot;Kid food predictor&quot; article.  I will keep an eye open for more of the routines going up on the site.<br> Tue, 06 Jan 2009 09:36:53 Z2009-01-06T09:36:53Z