<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>MSFTASProdSamples Work Item Rss Feed</title><link>http://www.codeplex.com/MSFTASProdSamples/WorkItem/List.aspx</link><description>MSFTASProdSamples Work Item Rss Description</description><item><title>Commented Issue: Using existing TraceTables [17238]</title><link>http://msftasprodsamples.codeplex.com/workitem/17238</link><description>Hi all,&lt;br /&gt;I m planning to run multiple instances of AsTrace NT Service &amp;#40; on more than 5-10 machines &amp;#41; to collate the Traces from multiple SSAS. But everytime I install the service onto new machine, the TraceTable &amp;#40; say name &amp;#58; TraceTable1 &amp;#41; gets reset &amp;#91; all the old entries are deleted &amp;#93;.&lt;br /&gt;&lt;br /&gt;Is there a way, I can use the same TraceTable for output from multiple machines not affecting the entries present &amp;#63;&lt;br /&gt;Comments: ** Comment from web user: furmangg ** &lt;p&gt;I should say that ASTrace uses Profiler APIs, and as far as I now, Profiler when it writes to a table will clear out the table when it starts. That&amp;#39;s why we added the PreserveHistory setting so we could save the rows before starting the Profiler trace in ASTrace. Make sense&amp;#63;&lt;/p&gt;</description><author>furmangg</author><pubDate>Thu, 12 Jan 2012 16:51:38 GMT</pubDate><guid isPermaLink="false">Commented Issue: Using existing TraceTables [17238] 20120112045138P</guid></item><item><title>Commented Issue: Using existing TraceTables [17238]</title><link>http://msftasprodsamples.codeplex.com/workitem/17238</link><description>Hi all,&lt;br /&gt;I m planning to run multiple instances of AsTrace NT Service &amp;#40; on more than 5-10 machines &amp;#41; to collate the Traces from multiple SSAS. But everytime I install the service onto new machine, the TraceTable &amp;#40; say name &amp;#58; TraceTable1 &amp;#41; gets reset &amp;#91; all the old entries are deleted &amp;#93;.&lt;br /&gt;&lt;br /&gt;Is there a way, I can use the same TraceTable for output from multiple machines not affecting the entries present &amp;#63;&lt;br /&gt;Comments: ** Comment from web user: furmangg ** &lt;p&gt;There&amp;#39;s a setting in the latest build of ASTrace which is&amp;#58;&lt;br /&gt;            &amp;#60;setting name&amp;#61;&amp;#34;PreserveHistory&amp;#34; serializeAs&amp;#61;&amp;#34;String&amp;#34;&amp;#62;&lt;br /&gt;                &amp;#60;value&amp;#62;True&amp;#60;&amp;#47;value&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;setting&amp;#62;&lt;/p&gt;&lt;p&gt;If PreserveHistory is set to true, then when each service starts, it will dump all the rows from the main trace table into an archive table. &lt;/p&gt;&lt;p&gt;If you run multiple services at the same time with PreserveHistory&amp;#61;true, this might work. I&amp;#39;d be concerned what would happen if two services pointing at the same table started at the same time, though.&lt;/p&gt;&lt;p&gt;I would just recommend each service point at a separate SQL destination table. Then put a view over the top of the 5-10 tables &amp;#40;plus the 5-10 archive tables&amp;#41; and UNION ALL them together.&lt;/p&gt;</description><author>furmangg</author><pubDate>Thu, 12 Jan 2012 16:50:21 GMT</pubDate><guid isPermaLink="false">Commented Issue: Using existing TraceTables [17238] 20120112045021P</guid></item><item><title>Commented Issue: Ascmd.exe XMLA batch delimiter regex bug [14608]</title><link>http://msftasprodsamples.codeplex.com/workitem/14608</link><description>I was running into issues trying to run an OLAP DB scripted out XMLA create &amp;#40;from management studio&amp;#41;.  The XMLA was valid and could be run fine in management studio, and AScmd would run simpler XMLA just fine.&lt;br /&gt;&lt;br /&gt;It appears to be the &amp;#34;BatchRegex&amp;#34; pattern defined on line 316 in Ascmd.cs.  It looks for &amp;#34;GO&amp;#34; statements within the xmla, however the pattern looked for any &amp;#34;go&amp;#34; text followed by a space.  We had a dimension attribute of &amp;#34;Year Ago Today&amp;#34;, and the ascmd would try to split the xmla into batches, and truncate the large CREATE statement at &amp;#34;Year Ago&amp;#34;.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve changed the regex to include and end string token and this seems to fix the problem, however I don&amp;#39;t understand the batching properly to know if this is an adequate fix&amp;#58;&lt;br /&gt;My Chagne&amp;#58; const string BatchRegex &amp;#61; &amp;#64;&amp;#34;&amp;#94;&amp;#91;&amp;#92;w&amp;#92;W&amp;#93;&amp;#42;&amp;#63;&amp;#91;&amp;#92;r&amp;#92;n&amp;#93;&amp;#42;go&amp;#92;s&amp;#36;&amp;#34;&amp;#59;&lt;br /&gt;&lt;br /&gt;Reproduction steps&amp;#58;&lt;br /&gt;Create an olapdb&amp;#47;cube with a measure or dimension having &amp;#34;go&amp;#34; in the name, anything like &amp;#34;go time&amp;#34; or &amp;#34;year ago today&amp;#34; should work.&lt;br /&gt;Script entire olap database as &amp;#34;CREATE&amp;#34; from Management studio&lt;br /&gt;Try to run this create script to create the olapdb on a new server using Ascmd.exe.&lt;br /&gt;Comments: ** Comment from web user: kosteckir ** &lt;p&gt;We have faced the same issue and following some code debugging came up with the following bug fix&amp;#58; const string BatchRegex &amp;#61; &amp;#64;&amp;#34;&amp;#94;&amp;#91;&amp;#92;w&amp;#92;W&amp;#93;&amp;#42;&amp;#63;&amp;#91;&amp;#92;r&amp;#92;n&amp;#93;&amp;#43;go&amp;#92;s&amp;#34;&amp;#59;&lt;/p&gt;&lt;p&gt;The second star before &amp;#8216;go&amp;#8217; needs to be replaced with &amp;#8216;&amp;#43;&amp;#8217;&lt;/p&gt;&lt;p&gt;Justification&amp;#58; &lt;br /&gt;&amp;#8220;&amp;#43;&amp;#8221; means 1 or more occurrences. This means that that &amp;#8216;go&amp;#8217; must be preceded by at least one new line &amp;#8220;&amp;#92;r&amp;#92;n&amp;#8221; to form a new batch. &lt;/p&gt;&lt;p&gt;&amp;#8220;&amp;#42;&amp;#8221; means 0 or more occurrences therefore every string ending with &amp;#8220;go&amp;#8221;&amp;#43; white space &amp;#40;such as &amp;#8220;ringo &amp;#8220;, &amp;#8220;bingo &amp;#8220;, &amp;#8220;dingo &amp;#8220; etc.&amp;#41; created a new batch with a broken XML structure regardless whether it was preceded by &amp;#91;&amp;#92;r&amp;#92;n&amp;#93; or not. &lt;/p&gt;</description><author>kosteckir</author><pubDate>Thu, 12 Jan 2012 16:19:44 GMT</pubDate><guid isPermaLink="false">Commented Issue: Ascmd.exe XMLA batch delimiter regex bug [14608] 20120112041944P</guid></item><item><title>Commented Issue: Ascmd.exe XMLA batch delimiter regex bug [14608]</title><link>http://msftasprodsamples.codeplex.com/workitem/14608</link><description>I was running into issues trying to run an OLAP DB scripted out XMLA create &amp;#40;from management studio&amp;#41;.  The XMLA was valid and could be run fine in management studio, and AScmd would run simpler XMLA just fine.&lt;br /&gt;&lt;br /&gt;It appears to be the &amp;#34;BatchRegex&amp;#34; pattern defined on line 316 in Ascmd.cs.  It looks for &amp;#34;GO&amp;#34; statements within the xmla, however the pattern looked for any &amp;#34;go&amp;#34; text followed by a space.  We had a dimension attribute of &amp;#34;Year Ago Today&amp;#34;, and the ascmd would try to split the xmla into batches, and truncate the large CREATE statement at &amp;#34;Year Ago&amp;#34;.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve changed the regex to include and end string token and this seems to fix the problem, however I don&amp;#39;t understand the batching properly to know if this is an adequate fix&amp;#58;&lt;br /&gt;My Chagne&amp;#58; const string BatchRegex &amp;#61; &amp;#64;&amp;#34;&amp;#94;&amp;#91;&amp;#92;w&amp;#92;W&amp;#93;&amp;#42;&amp;#63;&amp;#91;&amp;#92;r&amp;#92;n&amp;#93;&amp;#42;go&amp;#92;s&amp;#36;&amp;#34;&amp;#59;&lt;br /&gt;&lt;br /&gt;Reproduction steps&amp;#58;&lt;br /&gt;Create an olapdb&amp;#47;cube with a measure or dimension having &amp;#34;go&amp;#34; in the name, anything like &amp;#34;go time&amp;#34; or &amp;#34;year ago today&amp;#34; should work.&lt;br /&gt;Script entire olap database as &amp;#34;CREATE&amp;#34; from Management studio&lt;br /&gt;Try to run this create script to create the olapdb on a new server using Ascmd.exe.&lt;br /&gt;Comments: ** Comment from web user: kosteckir ** &lt;p&gt;We have faced the same issue and following some code debugging came up with the following bug fix&amp;#58; const string BatchRegex &amp;#61; &amp;#64;&amp;#34;&amp;#94;&amp;#91;&amp;#92;w&amp;#92;W&amp;#93;&amp;#42;&amp;#63;&amp;#91;&amp;#92;r&amp;#92;n&amp;#93;&amp;#43;go&amp;#92;s&amp;#34;&amp;#59;&lt;/p&gt;&lt;p&gt;The second star before &amp;#8216;go&amp;#8217; needs to be replaced with &amp;#8216;&amp;#43;&amp;#8217;&lt;/p&gt;&lt;p&gt;Justification&amp;#58; &lt;br /&gt;&amp;#8220;&amp;#43;&amp;#8221; means 1 or more occurrences. This means that that &amp;#8216;go&amp;#8217; must be preceded by at least one new line &amp;#8220;&amp;#92;r&amp;#92;n&amp;#8221; to form a new batch. &lt;/p&gt;&lt;p&gt;&amp;#8220;&amp;#42;&amp;#8221; means 0 or more occurrences therefore every string ending with &amp;#8220;go&amp;#8221;&amp;#43; white space &amp;#40;such as &amp;#8220;ringo &amp;#8220;, &amp;#8220;bingo &amp;#8220;, &amp;#8220;dingo &amp;#8220; etc.&amp;#41; created a new batch with a broken XML structure regardless whether it was preceded by &amp;#91;&amp;#92;r&amp;#92;n&amp;#93; or not.  &lt;br /&gt;&lt;/p&gt;</description><author>kosteckir</author><pubDate>Thu, 12 Jan 2012 16:17:49 GMT</pubDate><guid isPermaLink="false">Commented Issue: Ascmd.exe XMLA batch delimiter regex bug [14608] 20120112041749P</guid></item><item><title>Created Issue: Using existing TraceTables [17238]</title><link>http://msftasprodsamples.codeplex.com/workitem/17238</link><description>Hi all,&lt;br /&gt;I m planning to run multiple instances of AsTrace NT Service &amp;#40; on more than 5-10 machines &amp;#41; to collate the Traces from multiple SSAS. But everytime I install the service onto new machine, the TraceTable &amp;#40; say name &amp;#58; TraceTable1 &amp;#41; gets reset &amp;#91; all the old entries are deleted &amp;#93;.&lt;br /&gt;&lt;br /&gt;Is there a way, I can use the same TraceTable for output from multiple machines not affecting the entries present &amp;#63;&lt;br /&gt;</description><author>Balachander</author><pubDate>Wed, 11 Jan 2012 20:49:05 GMT</pubDate><guid isPermaLink="false">Created Issue: Using existing TraceTables [17238] 20120111084905P</guid></item><item><title>Created Issue: How can I add Data Mining Viewer to Visual Studio 2008? [16924]</title><link>http://msftasprodsamples.codeplex.com/workitem/16924</link><description>How can I add Data Mining Viewer to Visual Studio 2008&amp;#63; I  have  read articles and followed instructions  but it is not working. I have installed Microsoft SQL Server 2008 R 2 and I am able to create a data mining structure and model, but I want to add Data Mining Viewer so that I can develop data mining in a web application by using the tools and components under Data Mining Viewer.  I read the instruction on the these urls, but nothing is working. When I add  a component it is not  appearing the menu. Please help&lt;br /&gt;&lt;br /&gt;Urls&lt;br /&gt;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;msftasprodsamples.codeplex.com&amp;#47;wikipage&amp;#63;title&amp;#61;Katmai&amp;#33;Data&amp;#37;20Mining&amp;#37;20Web&amp;#37;20Controls&amp;#37;20Library&lt;br /&gt;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;www.dotnetspark.com&amp;#47;links&amp;#47;63243-installing-data-mining-web-controls-library.aspx&lt;br /&gt;</description><author>mobzam</author><pubDate>Sat, 19 Nov 2011 18:12:58 GMT</pubDate><guid isPermaLink="false">Created Issue: How can I add Data Mining Viewer to Visual Studio 2008? [16924] 20111119061258P</guid></item><item><title>Commented Issue: ASTrace: time shift [12950]</title><link>http://msftasprodsamples.codeplex.com/workitem/12950</link><description>Hello,&lt;br /&gt;ASTrace runs on the same server as AS being traced and SQL where log table is.&lt;br /&gt;StartTime and CurrentTime have 2 hours shift to system clock.&lt;br /&gt;Same events in Profiler &amp;#40;simultaneously traced&amp;#41; have no time shift.&lt;br /&gt;What can it actually be&amp;#63;&lt;br /&gt;&lt;br /&gt;Thank you in advance&amp;#33;&lt;br /&gt;Michael.&lt;br /&gt;Comments: ** Comment from web user: koehlerb ** &lt;p&gt;The problem looks to be that the TraceServer returns UTC time. No good workaround, though you can correct using SQL.&lt;br /&gt;e.g.&lt;br /&gt;DECLARE &amp;#64;utcOffset int &amp;#61; &amp;#40;SELECT CAST&amp;#40;GETDATE&amp;#40;&amp;#41;-GETUTCDATE&amp;#40;&amp;#41; as float&amp;#41;&amp;#42;24&amp;#41;&lt;br /&gt;SELECT DateAdd&amp;#40;hour,&amp;#64;utcOffset,StartTime&amp;#41; FROM  dbo.ASTrace&lt;/p&gt;&lt;p&gt;This does not account for changes in daylight savings time. &lt;/p&gt;&lt;p&gt;What is needed is something like the dataReader&lt;br /&gt;System.Data.IDataReader dataReader&amp;#59;&lt;br /&gt;...&lt;br /&gt;value &amp;#61; dataReader.GetValue&amp;#40;counter&amp;#41;&amp;#59;&lt;br /&gt;if &amp;#40;value &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;                        &amp;#123;   &amp;#47;&amp;#47;time is in UTC, convert to localtime&lt;br /&gt;                            if &amp;#40;value.GetType&amp;#40;&amp;#41; &amp;#61;&amp;#61; typeof&amp;#40;DateTime&amp;#41;&amp;#41;&lt;br /&gt;                            &amp;#123;&lt;br /&gt;                                value &amp;#61; DateTime.SpecifyKind&amp;#40;&amp;#40;DateTime&amp;#41;value, DateTimeKind.Utc&amp;#41;.ToLocalTime&amp;#40;&amp;#41;&amp;#59;&lt;/p&gt;</description><author>koehlerb</author><pubDate>Tue, 15 Mar 2011 20:07:16 GMT</pubDate><guid isPermaLink="false">Commented Issue: ASTrace: time shift [12950] 20110315080716P</guid></item><item><title>Created Issue: Ascmd.exe XMLA batch delimiter regex bug [14608]</title><link>http://msftasprodsamples.codeplex.com/workitem/14608</link><description>I was running into issues trying to run an OLAP DB scripted out XMLA create &amp;#40;from management studio&amp;#41;.  The XMLA was valid and could be run fine in management studio, and AScmd would run simpler XMLA just fine.&lt;br /&gt;&lt;br /&gt;It appears to be the &amp;#34;BatchRegex&amp;#34; pattern defined on line 316 in Ascmd.cs.  It looks for &amp;#34;GO&amp;#34; statements within the xmla, however the pattern looked for any &amp;#34;go&amp;#34; text followed by a space.  So we had a dimension attribute of Year Ago Today, and the ascmd would try to split the xmla into batches, and truncate the large CREATE statement at &amp;#34;Year Ago&amp;#34;.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve changed the regex to include and end string token and this seems to fix the problem, however I don&amp;#39;t understand the batching properly to know if this is an adequate fix&amp;#58;&lt;br /&gt;My Chagne&amp;#58; const string BatchRegex &amp;#61; &amp;#64;&amp;#34;&amp;#94;&amp;#91;&amp;#92;w&amp;#92;W&amp;#93;&amp;#42;&amp;#63;&amp;#91;&amp;#92;r&amp;#92;n&amp;#93;&amp;#42;go&amp;#92;s&amp;#36;&amp;#34;&amp;#59;&lt;br /&gt;&lt;br /&gt;Reproduction steps&amp;#58;&lt;br /&gt;Create an olapdb&amp;#47;cube with a measure or dimension having &amp;#34;go&amp;#34; in the name, anything like &amp;#34;go time&amp;#34; or &amp;#34;year ago today&amp;#34; should work.&lt;br /&gt;Script entire olap database as &amp;#34;CREATE&amp;#34; from Management studio&lt;br /&gt;Try to run this create script to create the olapdb on a new server using Ascmd.exe.&lt;br /&gt;</description><author>garrettpatterson</author><pubDate>Fri, 05 Nov 2010 17:39:57 GMT</pubDate><guid isPermaLink="false">Created Issue: Ascmd.exe XMLA batch delimiter regex bug [14608] 20101105053957P</guid></item><item><title>Created Issue: Does ascmd know about multiple rollover Trace files? [13524]</title><link>http://msftasprodsamples.codeplex.com/workitem/13524</link><description>If you passin the first Trace file, will it know to keep going with the rest of the roll-overs&amp;#63;&amp;#63;&lt;br /&gt;</description><author>ericblair</author><pubDate>Fri, 11 Jun 2010 19:31:28 GMT</pubDate><guid isPermaLink="false">Created Issue: Does ascmd know about multiple rollover Trace files? [13524] 20100611073128P</guid></item><item><title>Commented Issue: Where is ASTrace util? [13517]</title><link>http://msftasprodsamples.codeplex.com/workitem/13517</link><description>I downloaded the sample and searched through all the folders and nothing with the name ASTrace is there&amp;#63; What could I be missing&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks&amp;#33;&amp;#33;&lt;br /&gt;Comments: ** Comment from web user: furmangg ** &lt;p&gt;I believe the latest codebase is here&amp;#58;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;sqlsrvanalysissrvcs.codeplex.com&amp;#47;releases&lt;/p&gt;&lt;p&gt;It became a community managed sample, not an official SQL Server sample, I believe.&lt;/p&gt;</description><author>furmangg</author><pubDate>Fri, 11 Jun 2010 15:28:35 GMT</pubDate><guid isPermaLink="false">Commented Issue: Where is ASTrace util? [13517] 20100611032835P</guid></item><item><title>Commented Issue: Where is ASTrace util? [13517]</title><link>http://msftasprodsamples.codeplex.com/workitem/13517</link><description>I downloaded the sample and searched through all the folders and nothing with the name ASTrace is there&amp;#63; What could I be missing&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks&amp;#33;&amp;#33;&lt;br /&gt;Comments: ** Comment from web user: ericblair ** &lt;p&gt;Found it. Not very clear as to where to get it. The Samples page insinuates that simply installing the sample should get the astrace util, but in fact astrace is a separate install.&lt;/p&gt;</description><author>ericblair</author><pubDate>Fri, 11 Jun 2010 13:58:20 GMT</pubDate><guid isPermaLink="false">Commented Issue: Where is ASTrace util? [13517] 20100611015820P</guid></item><item><title>Created Issue: Where is ASTrace util? [13517]</title><link>http://msftasprodsamples.codeplex.com/workitem/13517</link><description>I downloaded the sample and searched through all the folders and nothing with the name ASTrace is there&amp;#63; What could I be missing&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks&amp;#33;&amp;#33;&lt;br /&gt;</description><author>ericblair</author><pubDate>Thu, 10 Jun 2010 23:12:33 GMT</pubDate><guid isPermaLink="false">Created Issue: Where is ASTrace util? [13517] 20100610111233P</guid></item><item><title>Created Issue: ASTrace: time shift [12950]</title><link>http://msftasprodsamples.codeplex.com/WorkItem/View.aspx?WorkItemId=12950</link><description>Hello,&lt;br /&gt;ASTrace runs on the same server as AS being traced and SQL where log table is.&lt;br /&gt;StartTime and CurrentTime have 2 hours shift to system clock.&lt;br /&gt;Same events in Profiler &amp;#40;simultaneously traced&amp;#41; have no time shift.&lt;br /&gt;What can it actually be&amp;#63;&lt;br /&gt;&lt;br /&gt;Thank you in advance&amp;#33;&lt;br /&gt;Michael.&lt;br /&gt;</description><author>muk242</author><pubDate>Thu, 06 May 2010 12:22:30 GMT</pubDate><guid isPermaLink="false">Created Issue: ASTrace: time shift [12950] 20100506122230P</guid></item><item><title>Created Issue: There are 98 samples using Katmai’s database in KJ Sample build 91203. [11726]</title><link>http://msftasprodsamples.codeplex.com/WorkItem/View.aspx?WorkItemId=11726</link><description>There are 98 samples using Katmai&amp;#8217;s database in KJ Sample build 91203, These samples need to be adjusted to use AdventureWorks2008R2.&lt;br /&gt;Please see the following table about the details&amp;#58;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Category&lt;br /&gt;&lt;br /&gt;SubCategory&lt;br /&gt;&lt;br /&gt;Sample&lt;br /&gt;&lt;br /&gt;Database&lt;br /&gt;&lt;br /&gt;Analysis Services&amp;#40;13&amp;#41;&lt;br /&gt;&lt;br /&gt;Programmability-AMO&lt;br /&gt;&lt;br /&gt;AmoAdventureWorks&lt;br /&gt;&lt;br /&gt;AdventureWorksDW&lt;br /&gt;&lt;br /&gt;AS Simple Sample&lt;br /&gt;&lt;br /&gt;Adventure Works DW&lt;br /&gt;&lt;br /&gt;Programmability-Extensibility&lt;br /&gt;&lt;br /&gt;PersonalizationExtensions&lt;br /&gt;&lt;br /&gt;Adventure Works DW&lt;br /&gt;&lt;br /&gt;Tutorials&lt;br /&gt;&lt;br /&gt;Lesson 1 Complete&lt;br /&gt;&lt;br /&gt;Adventure Works DW&lt;br /&gt;&lt;br /&gt;Lesson 10 Complete&lt;br /&gt;&lt;br /&gt;Adventure Works DW&lt;br /&gt;&lt;br /&gt;Lesson 2 Complete&lt;br /&gt;&lt;br /&gt;Adventure Works DW&lt;br /&gt;&lt;br /&gt;Lesson 3 Complete&lt;br /&gt;&lt;br /&gt;Adventure Works DW&lt;br /&gt;&lt;br /&gt;Lesson 5 Complete&lt;br /&gt;&lt;br /&gt;Adventure Works DW&lt;br /&gt;&lt;br /&gt;Lesson 6 Complete&lt;br /&gt;&lt;br /&gt;Adventure Works DW&lt;br /&gt;&lt;br /&gt;Lesson 7 Complete&lt;br /&gt;&lt;br /&gt;Adventure Works DW&lt;br /&gt;&lt;br /&gt;Lesson 8 Complete&lt;br /&gt;&lt;br /&gt;Adventure Works DW&lt;br /&gt;&lt;br /&gt;Lesson 9 Complete&lt;br /&gt;&lt;br /&gt;Adventure Works DW&lt;br /&gt;&lt;br /&gt;Lesson4&lt;br /&gt;&lt;br /&gt;Adventure Works DW&lt;br /&gt;&lt;br /&gt;Integrated Samples&amp;#40;2&amp;#41;&lt;br /&gt;&lt;br /&gt;Integrated Samples&lt;br /&gt;&lt;br /&gt;HRResume&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Storefront&lt;br /&gt;&lt;br /&gt;AdventureWorks, Adventure Works DW&lt;br /&gt;&lt;br /&gt;Integration Services&amp;#40;16&amp;#41;&lt;br /&gt;&lt;br /&gt;Package Samples&lt;br /&gt;&lt;br /&gt;AWDataWarehouseRefresh&lt;br /&gt;&lt;br /&gt;AdventureWorks, AdventureWorksDW&lt;br /&gt;&lt;br /&gt;CalculatedColumns Sample&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;CaptureDataLineage Sample&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Change Data Capture for Specified Interval Package Sample&lt;br /&gt;&lt;br /&gt;AdventureWorks2008,AdventureWorksDW&lt;br /&gt;&lt;br /&gt;Change Data Capture since Last Request Package Sample&lt;br /&gt;&lt;br /&gt;AdventureWorks2008,AdventureWorksDW&lt;br /&gt;&lt;br /&gt;DataCleaning Sample&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;ExecuteProcess Sample&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;ExecuteSQLParametersResultSets Sample&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;ExecuteSQLStatementsInLoop Sample&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;SmoTablesDBCC&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;SyncAdvWorksPartitions Sample&lt;br /&gt;&lt;br /&gt;Adventure Works DW&lt;br /&gt;&lt;br /&gt;Programming Samples-Control Flow&lt;br /&gt;&lt;br /&gt;CreatePackage Sample&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;SqlConnectionManager Sample&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Tutorial&lt;br /&gt;&lt;br /&gt;Creating a Basic Package&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Creating a Simple ETL Package&lt;br /&gt;&lt;br /&gt;AdventureWorks, AdventureWorksDW&lt;br /&gt;&lt;br /&gt;Deploying Packages&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Replication&amp;#40;3&amp;#41;&lt;br /&gt;&lt;br /&gt;Merge&lt;br /&gt;&lt;br /&gt;BusinessLogic&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;SalesOrders&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;SalesOrdersMobile&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Report Services&amp;#40;5&amp;#41;&lt;br /&gt;&lt;br /&gt;&amp;#160;Script Samples&lt;br /&gt;&lt;br /&gt;Script Samples&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Model Samples&lt;br /&gt;&lt;br /&gt;Adventure Works Model&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Report Samples&lt;br /&gt;&lt;br /&gt;AdventureWorks Sample Reports&lt;br /&gt;&lt;br /&gt;AdventureWorks2008&lt;br /&gt;&lt;br /&gt;AdventureWorksOffline Sample Reports&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Server Management&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;SQL Engine&amp;#40;58&amp;#41;&lt;br /&gt;&lt;br /&gt;Administration&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;DatabaseSnapshot&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;EventNotifications&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;FileGroups&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Partitioning&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;SlidingWindow&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Data Access-odbc&lt;br /&gt;&lt;br /&gt;BulkCopyFormatAndData&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;BulkCopyFromVariables&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;BulkCopyNativeMode&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;BulkCopySelectResult&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;BulkCopyWithFormat&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;CreateAndDisplayPerformanceLog&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;LogLongRunningQuery&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;ProcessODBCErrors&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;ProcessReturnCodes&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;tablevaluedparameters_odbc&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;UseDataAtExecutionColumns&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;UseDataAtExecutionParameters&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Data Access-oledb&lt;br /&gt;&lt;br /&gt;BulkCopyRecords&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Datetimeoledb&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;FetchColumns_A&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;FetchColumns_B&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;FetchRowsFromResultSet&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;GetFastForwardCursor&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;GetRowsUsingBookmark&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;InitializeAndEstablishConnection_A&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;InitializeAndEstablishConnection_B&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;InitializeAndEstablishConnection_C&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;WorkingWithBLOBs&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Full Text Search&lt;br /&gt;&lt;br /&gt;ItemFinder&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Programmability-CLR&lt;br /&gt;&lt;br /&gt;AdventureWorks - CLR&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;ArrayParameter&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;AssemblyCleanup&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;CADateTime&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;CurrencyWebService&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;HandlingLOBUsingCLR&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;HelloWorld - CLR&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;HelloworldReady&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;InProcessDataAccess&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;OracleTVF&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;ResultSet&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;SendDataSet&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;StringManipulate&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;StringUtilities&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Transaction&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;UDTUtilities&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;UserDefinedDataType&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;UTF8String&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Programmability-SMO&lt;br /&gt;&lt;br /&gt;ServiceBrokerConfiguration&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;UtilityConversion&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;VerifyBackup&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;Query Processing&lt;br /&gt;&lt;br /&gt;Data Warehouse Tuning Techniques&lt;br /&gt;&lt;br /&gt;AdventureWorksDW&lt;br /&gt;&lt;br /&gt;Grouping Sets Report&lt;br /&gt;&lt;br /&gt;AdventureWorksDW&lt;br /&gt;&lt;br /&gt;ServiceBroker&lt;br /&gt;&lt;br /&gt;EventLogging&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;HelloWorld_CLR&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;xml&lt;br /&gt;&lt;br /&gt;XmlManuInstructions&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;XmlOnlineCatalog&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;&lt;br /&gt;XmlSurvey&lt;br /&gt;&lt;br /&gt;AdventureWorks&lt;br /&gt;</description><author>libinzhao</author><pubDate>Mon, 08 Feb 2010 06:35:43 GMT</pubDate><guid isPermaLink="false">Created Issue: There are 98 samples using Katmai’s database in KJ Sample build 91203. [11726] 20100208063543A</guid></item><item><title>Created Issue: PersonalizationExtensions: Build failed for useless reference on AMD64 platform. [10991]</title><link>http://msftasprodsamples.codeplex.com/WorkItem/View.aspx?WorkItemId=10991</link><description>Environment&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;1. Windows 7 ENU x86&lt;br /&gt;2. Katmai 10.50.1352.12&lt;br /&gt;3. Sample build 91118&lt;br /&gt;4. VS 2008&lt;br /&gt;&lt;br /&gt;Steps&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;1. Locate to &amp;#34;...Samples&amp;#92;Analysis Services&amp;#92;Programmability&amp;#92;Extensibility&amp;#92;PersonalizationExtensions&amp;#34;. &lt;br /&gt;2. Double click &amp;#34;ASPE.sln&amp;#34; to open the solution.&lt;br /&gt;3. Right click the &amp;#34;Aspe&amp;#34; project and then &amp;#8220;Build&amp;#8221;.&lt;br /&gt;&lt;br /&gt;Expectation&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;There are 0 error and 0 warning in the built result.&lt;br /&gt;&lt;br /&gt;Actual results&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;There are 5 error and 2 warnings in the built result. &lt;br /&gt;Please see the attached file &amp;#34;Errors.txt&amp;#34;.&lt;br /&gt;&lt;br /&gt;Comments&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;Build failed by not found the assembly&amp;#58; &amp;#34;msmgdsrv&amp;#34;.&lt;br /&gt;</description><author>libinzhao</author><pubDate>Tue, 24 Nov 2009 08:15:45 GMT</pubDate><guid isPermaLink="false">Created Issue: PersonalizationExtensions: Build failed for useless reference on AMD64 platform. [10991] 20091124081545A</guid></item><item><title>Closed Issue: Simple Sample AMO Access: the partial class SimpleSampleAMOAccess is blank. [8628]</title><link>http://msftasprodsamples.codeplex.com/WorkItem/View.aspx?WorkItemId=8628</link><description>Environment&amp;#58; &lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;1. Win2k3 x64 ENT ENU SP2.&lt;br /&gt;2. VS2005 &lt;br /&gt;3. Katmai Samples 81021&lt;br /&gt;&lt;br /&gt;Steps&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;1. Open the solution file &amp;#8220;..&amp;#92;Analysis Services&amp;#92;Programmability&amp;#92;AMO&amp;#92;AS Simple Sample&amp;#92;CS&amp;#92;ServerAdmin.sln&amp;#34; via vs2005.&lt;br /&gt;2. Open the AMO add partition and xmla.cs of ServerAdmin project.&lt;br /&gt;3. Check the content of this class.&lt;br /&gt;&lt;br /&gt;Expectation&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;The partial class SimpleSampleAMOAccess should contains some source code.&lt;br /&gt;&lt;br /&gt;Actual Results&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;It is a blank class which have nothing. &lt;br /&gt;&lt;br /&gt;Comments&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;If the partial class SimpleSampleAMOAccess is unuseful or redundant, it should be removed.&lt;br /&gt;Maybe user is confused that it isn&amp;#39;t finished.&lt;br /&gt;</description><author>libinzhao</author><pubDate>Tue, 24 Nov 2009 05:22:24 GMT</pubDate><guid isPermaLink="false">Closed Issue: Simple Sample AMO Access: the partial class SimpleSampleAMOAccess is blank. [8628] 20091124052224A</guid></item><item><title>Commented Issue: Simple Sample ADOMD ClientAccess: There is an exception when click the “Sales Forecasting Model”. [9504]</title><link>http://msftasprodsamples.codeplex.com/WorkItem/View.aspx?WorkItemId=9504</link><description>Environment&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;1. Win2k3 SP2 &amp;#160;X64&lt;br /&gt;2.SQL Server 10.0.1600.22&lt;br /&gt;3. SQL Samples 090306&lt;br /&gt;&lt;br /&gt;Repro Steps&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;1&amp;#62;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Build the AS Simple sample solution Successfully.&lt;br /&gt;2&amp;#62;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Run the Simple Sample AMO Access.exe from Step1 to step 6 to create the Simple Sample AS Database.&lt;br /&gt;3&amp;#62;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Run the Simple Sample ADOMD ClientAccess.exe, Click the &amp;#8220; Connect to Server and Explore the Main Objects&amp;#8221; Button.&lt;br /&gt;4&amp;#62;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Check the Simple Sample from the Available Database List, Expand &amp;#8220; MiningStructures&amp;#8221;.&lt;br /&gt;5&amp;#62;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Expand &amp;#8220;Forecasting Sale structure&amp;#8221;.&lt;br /&gt;6&amp;#62;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Expand &amp;#8220;Model&amp;#8221;, click the &amp;#8220;Sales Forecasting Model&amp;#8221;.&lt;br /&gt;&lt;br /&gt;Expectation&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;The Simple Sample ADOMD ClientAccess.exe should run properly without any exception.&lt;br /&gt;&lt;br /&gt;Actual Result&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;There is an exception when click the &amp;#8220;Sales Forecasting Model&amp;#8221;.&lt;br /&gt;Please take a view the attached picture&amp;#58; ASSimpleException.bmp&lt;br /&gt;</description><author>libinzhao</author><pubDate>Tue, 24 Nov 2009 05:19:58 GMT</pubDate><guid isPermaLink="false">Commented Issue: Simple Sample ADOMD ClientAccess: There is an exception when click the “Sales Forecasting Model”. [9504] 20091124051958A</guid></item><item><title>Closed Issue: Simple Sample ADOMD ClientAccess: There is an exception when click the head of datagrid.</title><link>http://msftasprodsamples.codeplex.com/WorkItem/View.aspx?WorkItemId=8626</link><description>Environment&amp;#58; &lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;1. Win2k3 x64 ENT ENU SP2.&lt;br /&gt;2. VS2005 &lt;br /&gt;3. Katmai Samples 81016&lt;br /&gt;&lt;br /&gt;Steps&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;1. Deployed the AdventureWorks Analysis Services Project to localhost server.&lt;br /&gt;2. Build and run the Simple Sample ADOMD ClientAccess.exe.&lt;br /&gt;3. click the &amp;#8220;Connect to Server and explore maid objects&amp;#8221;.&lt;br /&gt;4. Select the &amp;#8220;AdventureWorks DW&amp;#8221; of available databases.&lt;br /&gt;5. Click the &amp;#8220;Run Query&amp;#8221; button.&lt;br /&gt;6. Click the &amp;#8220;&amp;#91;Measures&amp;#93;.&amp;#91;Reseller Sales Amount&amp;#93;&amp;#8221; of the datagrid head.&lt;br /&gt;&lt;br /&gt;Expectation&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;The Simple Sample ADOMD ClientAccess.exe can work without exception.&lt;br /&gt;&lt;br /&gt;Actual Results&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;There is an exception message box popup. please see the attached picture exception.jpg for detail.&lt;br /&gt;Comments: Verify on sample 90727.</description><author>libinzhao</author><pubDate>Wed, 29 Jul 2009 03:44:28 GMT</pubDate><guid isPermaLink="false">Closed Issue: Simple Sample ADOMD ClientAccess: There is an exception when click the head of datagrid. 20090729034428A</guid></item><item><title>Closed Issue: AmoBrowser:  There is an exception when click the AdventureWorksDW  AS Database.</title><link>http://msftasprodsamples.codeplex.com/WorkItem/View.aspx?WorkItemId=9501</link><description>Environment&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;1. Win2k3 SP2 &amp;#160;X64&lt;br /&gt;2. SQL Server 10.0.1600.22&lt;br /&gt;3. SQL Samples 090306&lt;br /&gt;&lt;br /&gt;Repro Steps&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;1&amp;#62;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Deployed the AdventureWorks 2008 Analysis Services Project successfully.&lt;br /&gt;2&amp;#62;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Build and run the AmoBrowser.exe &lt;br /&gt;3&amp;#62;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Connect to the Local server, &amp;#160;and expand the Databases.&lt;br /&gt;4&amp;#62;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Click the Adventure Works DW 2008&lt;br /&gt;5&amp;#62;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Click the DismissedValidationRules node. &lt;br /&gt;&lt;br /&gt;Expectation&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;The AmoBrowser.exe should run properly without no exception.&lt;br /&gt;&lt;br /&gt;Actual Result&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;At step5, there is an exception popped up, please take a view the attached picture AmobrowserError.bmp.&lt;br /&gt;Comments: Verify on sample 90727.</description><author>libinzhao</author><pubDate>Wed, 29 Jul 2009 03:44:21 GMT</pubDate><guid isPermaLink="false">Closed Issue: AmoBrowser:  There is an exception when click the AdventureWorksDW  AS Database. 20090729034421A</guid></item><item><title>Closed Issue: Simple Sample ADOMD Client Access: Failed to receive the query result when click “Run query” at the second time.</title><link>http://msftasprodsamples.codeplex.com/WorkItem/View.aspx?WorkItemId=8623</link><description>This Defect also repros on Yukon RTM.&lt;br /&gt;Environment&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;1. Windows 2003 ENT ENU&lt;br /&gt;2. Installed Yukon DEV ENU SP2 &amp;#40;9.00.3028&amp;#41;, WR4 sample 61201&lt;br /&gt;3.Installed Vistual Studio 2005.&lt;br /&gt;4. Created AS database &amp;#8220;Simple Sample&amp;#8221; using &amp;#8220;Simple Sample AMO Access&amp;#8221;.&lt;br /&gt;&lt;br /&gt;Steps&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;1. Double click &amp;#34;Simple Sample ADOMD ClientAccess.exe&amp;#34; to run the application.&lt;br /&gt;2. Click the button &amp;#34;Connect to Server and Explore Main Objects&amp;#34;.&lt;br /&gt;3. Click &amp;#34;Run query&amp;#34;.&lt;br /&gt;4. Click &amp;#34;Run query&amp;#34;&lt;br /&gt;&lt;br /&gt;Expectation&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;The query result ofstep4 should bethe same asthose in step3.&lt;br /&gt;&lt;br /&gt;Actual result&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;An unhandled exception &amp;#34;A column named &amp;#39;&amp;#91;Measures&amp;#93;.&amp;#91;Reseller Sales Amount&amp;#93;&amp;#39; already belongs to this DataTable.&amp;#34; occurs.&lt;br /&gt;&lt;br /&gt;Comments&amp;#58;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;The following unhandled exception also occur when click &amp;#34;run query&amp;#34;&amp;#58;&lt;br /&gt;1. An unhandled exception &amp;#34;Query &amp;#40;2, 67&amp;#41; Analizador&amp;#58; La sintaxis de &amp;#39;&amp;#91;date&amp;#93;&amp;#39; es incorrecta.&amp;#34; occurs when execute the following script in English platform&amp;#58;&lt;br /&gt;SELECT&lt;br /&gt;KPIValue&amp;#40;&amp;#34;Internet Revenue&amp;#34;&amp;#41; on columns,&lt;br /&gt;&amp;#91;Date&amp;#93;.&amp;#91;Date&amp;#93; on rows&lt;br /&gt;FROM&lt;br /&gt;&amp;#91;Adventure Works Simple Sample&amp;#93;&lt;br /&gt;WHERE&lt;br /&gt;&amp;#36;&amp;#91;date&amp;#93;.&amp;#91;date&amp;#93;&lt;br /&gt;2. An unhandled exception &amp;#34;&amp;#39;row&amp;#39; argument cannot be null.&amp;#34; when run the following query&amp;#58;&lt;br /&gt; SELECT&lt;br /&gt; &amp;#91;Measures&amp;#93;.&amp;#91;Average Rate&amp;#93; on columns,&lt;br /&gt; &amp;#91;Date&amp;#93;.&amp;#91;Date&amp;#93; on rows &lt;br /&gt; FROM&lt;br /&gt; Direct Sales&lt;br /&gt;3. An unhandled exception &amp;#34;Specified argument was out of the range of valid values.&amp;#34; occurs when run the following script.&lt;br /&gt;SELECT&lt;br /&gt;&amp;#91;Measures&amp;#93;.&amp;#91;Reseller Sales Amount&amp;#93; on columns&lt;br /&gt;FROM&lt;br /&gt;Adventure Works Simple Sample&lt;br /&gt;WHERE&lt;br /&gt;&amp;#91;Customer&amp;#93;.&amp;#91;Country-Region&amp;#93;.&amp;#38;amp&amp;#59;&amp;#91;United States&amp;#93;&lt;br /&gt;Comments: Verify on sample 90714.</description><author>libinzhao</author><pubDate>Fri, 17 Jul 2009 05:24:03 GMT</pubDate><guid isPermaLink="false">Closed Issue: Simple Sample ADOMD Client Access: Failed to receive the query result when click “Run query” at the second time. 20090717052403A</guid></item></channel></rss>