<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Analysis Services Stored Procedure Project</title><link>http://asstoredprocedures.codeplex.com/project/feeds/rss</link><description>A set of stored procedures for Microsoft SQL Server Analysis Services.</description><item><title>New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it."</title><link>http://asstoredprocedures.codeplex.com/discussions/441913</link><description>&lt;div style="line-height: normal;"&gt;Ok i found the answer...it deals with the msmdredir.ini.&lt;br /&gt;
&lt;br /&gt;
refering this : &lt;a href="http://support.microsoft.com/kb/2658571" rel="nofollow"&gt;http://support.microsoft.com/kb/2658571&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
after removing the IPV6 entry from msmdredir.in int this section it works :&lt;br /&gt;
before :&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;Instances&amp;gt;
    &amp;lt;Instance&amp;gt;
        &amp;lt;Name&amp;gt;SSAS&amp;lt;/Name&amp;gt;
        &amp;lt;Port&amp;gt;2383&amp;lt;/Port&amp;gt;
        &amp;lt;PortIPv6&amp;gt;50825&amp;lt;/PortIPv6&amp;gt;
    &amp;lt;/Instance&amp;gt;
&amp;lt;/Instances&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

After :&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;Instances&amp;gt;
    &amp;lt;Instance&amp;gt;
        &amp;lt;Name&amp;gt;SSAS&amp;lt;/Name&amp;gt;
        &amp;lt;Port&amp;gt;2383&amp;lt;/Port&amp;gt;
    &amp;lt;/Instance&amp;gt;
&amp;lt;/Instances&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

Thank you for your help.&lt;br /&gt;
&lt;/div&gt;</description><author>fpatou</author><pubDate>Mon, 29 Apr 2013 15:39:50 GMT</pubDate><guid isPermaLink="false">New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it." 20130429033950P</guid></item><item><title>New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it."</title><link>http://asstoredprocedures.codeplex.com/discussions/441913</link><description>&lt;div style="line-height: normal;"&gt;Ok i found the answer...it deals with the msmdredir.ini.&lt;br /&gt;
&lt;br /&gt;
refering this : &lt;a href="http://support.microsoft.com/kb/2658571" rel="nofollow"&gt;http://support.microsoft.com/kb/2658571&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
after removing the IPV6 entry from msmdredir.in int this section it works :&lt;br /&gt;
before :&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;Instances&amp;gt;
    &amp;lt;Instance&amp;gt;
        &amp;lt;Name&amp;gt;SSAS&amp;lt;/Name&amp;gt;
        &amp;lt;Port&amp;gt;2383&amp;lt;/Port&amp;gt;
        &amp;lt;PortIPv6&amp;gt;50825&amp;lt;/PortIPv6&amp;gt;
    &amp;lt;/Instance&amp;gt;
&amp;lt;/Instances&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

After :&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;Instances&amp;gt;
    &amp;lt;Instance&amp;gt;
        &amp;lt;Name&amp;gt;SSAS&amp;lt;/Name&amp;gt;
        &amp;lt;Port&amp;gt;2383&amp;lt;/Port&amp;gt;
    &amp;lt;/Instance&amp;gt;
&amp;lt;/Instances&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

Thank you for your help.&lt;br /&gt;
&lt;/div&gt;</description><author>fpatou</author><pubDate>Mon, 29 Apr 2013 15:39:50 GMT</pubDate><guid isPermaLink="false">New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it." 20130429033950P</guid></item><item><title>New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it."</title><link>http://asstoredprocedures.codeplex.com/discussions/441913</link><description>&lt;div style="line-height: normal;"&gt;I ran into a strange installation of SSAS recently where it was a named instance but the port had been changed to the default port and SQL browser had been stopped. So when one of those sprocs mentioned above ran, AdomdServer.Context.CurrentServerID was saying the instance name was SERVERNAME\SSAS and since SQL Browser wasn't running, it failed.&lt;br /&gt;
&lt;br /&gt;
I know you said SQL Browser was running. But the point is that you may be connecting to the instance with a different server and instance name than SSAS internally thinks it is... then the sprocs will try to connect to SSAS under the server and instance name it knows.&lt;br /&gt;
&lt;br /&gt;
If you connect Object Explorer in Management Studio to SSAS, then right click on the server node and choose Properties, does SSMS show you the server name? Can you connect using the name shown rather than how you're connecting now? (That's a new feature, if I recall. I can't recall when they added the new tab in the properties window to show you instance info.)&lt;br /&gt;
&lt;/div&gt;</description><author>furmangg</author><pubDate>Mon, 29 Apr 2013 14:33:41 GMT</pubDate><guid isPermaLink="false">New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it." 20130429023341P</guid></item><item><title>New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it."</title><link>http://asstoredprocedures.codeplex.com/discussions/441913</link><description>&lt;div style="line-height: normal;"&gt;I ran into a strange installation of SSAS recently where it was a named instance but the port had been changed to the default port and SQL browser had been stopped. So when one of those sprocs mentioned above ran, AdomdServer.Context.CurrentServerID was saying the instance name was SERVERNAME\SSAS and since SQL Browser wasn't running, it failed.&lt;br /&gt;
&lt;br /&gt;
I know you said SQL Browser was running. But the point is that you may be connecting to the instance with a different server and instance name than SSAS internally thinks it is... then the sprocs will try to connect to SSAS under the server and instance name it knows.&lt;br /&gt;
&lt;br /&gt;
If you connect Object Explorer in Management Studio to SSAS, then right click on the server node and choose Properties, does SSMS show you the server name? Can you connect using the name shown rather than how you're connecting now? (That's a new feature, if I recall. I can't recall when they added the new tab in the properties window to show you instance info.)&lt;br /&gt;
&lt;/div&gt;</description><author>furmangg</author><pubDate>Mon, 29 Apr 2013 14:33:41 GMT</pubDate><guid isPermaLink="false">New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it." 20130429023341P</guid></item><item><title>New Post: Clr Assembly must have main file specified</title><link>http://asstoredprocedures.codeplex.com/discussions/432776</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
I had the same issue but I found out what was going on. I had copied the 2012 ASSP.DLL to C:\Program Files\Microsoft SQL Server\MSAS11.MSSQLSERVER\OLAP and tried to register it after unblocking it - no joy. Then I double checked it was unblocked, and sure enough, it wasn't - even if I tried to unblock it repeatedly, it would appear to be working (no error appears when you click OK or Apply in Properties), but it had not unblocked it - clearly this is related to the folder being part of Program Files. I am a server admin by the way.&lt;br /&gt;
&lt;br /&gt;
I then moved the file to my desktop, unblocked it again, went back in to Properties and checked and now it was unblocked - it then registered fine.&lt;br /&gt;
&lt;/div&gt;</description><author>RyanDev</author><pubDate>Mon, 29 Apr 2013 13:39:22 GMT</pubDate><guid isPermaLink="false">New Post: Clr Assembly must have main file specified 20130429013922P</guid></item><item><title>New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it."</title><link>http://asstoredprocedures.codeplex.com/discussions/441913</link><description>&lt;div style="line-height: normal;"&gt;CALL ASSP.DMV(&amp;quot;SELECT * FROM $SYSTEM.DISCOVER_SESSIONS&amp;quot;)  : This doesn't work ! :-( same error message &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
SSAS instance run under domain account and i gave ImpersonateServiceAccount and Unrestricted to the permission set...&lt;br /&gt;
&lt;br /&gt;
SQL browser is running&lt;br /&gt;
&lt;br /&gt;
thanks for your help ...&lt;br /&gt;
&lt;/div&gt;</description><author>fpatou</author><pubDate>Mon, 29 Apr 2013 10:05:18 GMT</pubDate><guid isPermaLink="false">New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it." 20130429100518A</guid></item><item><title>New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it."</title><link>http://asstoredprocedures.codeplex.com/discussions/441913</link><description>&lt;div style="line-height: normal;"&gt;CALL ASSP.DMV(&amp;quot;SELECT * FROM $SYSTEM.DISCOVER_SESSIONS&amp;quot;)  : This doesn't work ! :-( same error message &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
SSAS instance run under domain account and i gave ImpersonateServiceAccount and Unrestricted to the permission set...&lt;br /&gt;
&lt;br /&gt;
SQL browser is running&lt;br /&gt;
&lt;br /&gt;
thanks for your help ...&lt;br /&gt;
&lt;/div&gt;</description><author>fpatou</author><pubDate>Mon, 29 Apr 2013 10:05:18 GMT</pubDate><guid isPermaLink="false">New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it." 20130429100518A</guid></item><item><title>New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it."</title><link>http://asstoredprocedures.codeplex.com/discussions/441913</link><description>&lt;div style="line-height: normal;"&gt;Usually this &amp;quot;actively refused&amp;quot; error means that the SSAS Service or SQL Browser service is not running. (see &lt;a href="http://msdn.microsoft.com/en-us/library/cc917670.aspx" rel="nofollow"&gt;http://msdn.microsoft.com/en-us/library/cc917670.aspx&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
Can you run other ASSP functions like CALL ASSP.DMV(&amp;quot;SELECT * FROM $SYSTEM.DISCOVER_SESSIONS&amp;quot;)  ?&lt;br /&gt;
&lt;br /&gt;
Is your SSAS instance running under a domain account or one of the built-in accounts like local system or network service.&lt;br /&gt;
&lt;br /&gt;
What permissions and impersonation options did you choose when you installed ASSP?&lt;br /&gt;
&lt;/div&gt;</description><author>dgosbell</author><pubDate>Mon, 29 Apr 2013 09:42:46 GMT</pubDate><guid isPermaLink="false">New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it." 20130429094246A</guid></item><item><title>New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it."</title><link>http://asstoredprocedures.codeplex.com/discussions/441913</link><description>&lt;div style="line-height: normal;"&gt;Usually this &amp;quot;actively refused&amp;quot; error means that the SSAS Service or SQL Browser service is not running. (see &lt;a href="http://msdn.microsoft.com/en-us/library/cc917670.aspx" rel="nofollow"&gt;http://msdn.microsoft.com/en-us/library/cc917670.aspx&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
Can you run other ASSP functions like CALL ASSP.DMV(&amp;quot;SELECT * FROM $SYSTEM.DISCOVER_SESSIONS&amp;quot;)  ?&lt;br /&gt;
&lt;br /&gt;
Is your SSAS instance running under a domain account or one of the built-in accounts like local system or network service.&lt;br /&gt;
&lt;br /&gt;
What permissions and impersonation options did you choose when you installed ASSP?&lt;br /&gt;
&lt;/div&gt;</description><author>dgosbell</author><pubDate>Mon, 29 Apr 2013 09:42:46 GMT</pubDate><guid isPermaLink="false">New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it." 20130429094246A</guid></item><item><title>New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it."</title><link>http://asstoredprocedures.codeplex.com/discussions/441913</link><description>&lt;div style="line-height: normal;"&gt;Hello...on SSAS 2012 i'm trying to use this command&lt;br /&gt;
&lt;br /&gt;
CALL ASSP.DiscoverXmlMetadataFull(&amp;quot;\Databases\Database&amp;quot;, &amp;quot;State&amp;lt;&amp;gt;'Processed'&amp;quot; ,&amp;quot;&amp;lt;ObjectExpansion&amp;gt;ExpandObject&amp;lt;/ObjectExpansion&amp;gt;&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
 and get error :&lt;br /&gt;
&lt;br /&gt;
&amp;quot;No connection could be made because the target machine actively refused it.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Any ideas to solve it ?&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
&lt;/div&gt;</description><author>fpatou</author><pubDate>Mon, 29 Apr 2013 07:51:41 GMT</pubDate><guid isPermaLink="false">New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it." 20130429075141A</guid></item><item><title>New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it."</title><link>http://asstoredprocedures.codeplex.com/discussions/441913</link><description>&lt;div style="line-height: normal;"&gt;Hello...on SSAS 2012 i'm trying to use this command&lt;br /&gt;
&lt;br /&gt;
CALL ASSP.DiscoverXmlMetadataFull(&amp;quot;\Databases\Database&amp;quot;, &amp;quot;State&amp;lt;&amp;gt;'Processed'&amp;quot; ,&amp;quot;&amp;lt;ObjectExpansion&amp;gt;ExpandObject&amp;lt;/ObjectExpansion&amp;gt;&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
 and get error :&lt;br /&gt;
&lt;br /&gt;
&amp;quot;No connection could be made because the target machine actively refused it.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Any ideas to solve it ?&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
&lt;/div&gt;</description><author>fpatou</author><pubDate>Mon, 29 Apr 2013 07:51:41 GMT</pubDate><guid isPermaLink="false">New Post: SSAS 2012  using ASSP : "No connection could be made because the target machine actively refused it." 20130429075141A</guid></item><item><title>New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012</title><link>http://asstoredprocedures.codeplex.com/discussions/441519</link><description>&lt;div style="line-height: normal;"&gt;You are right !!!!&lt;br /&gt;
&lt;br /&gt;
For your information as I was in a hurry i used &lt;a href="http://monodevelop.com/" rel="nofollow"&gt;http://monodevelop.com/&lt;/a&gt; as a free alternative to VS2010 ! and it works great now i can manage to compile !!!!!&lt;br /&gt;
&lt;br /&gt;
thank you&lt;br /&gt;
&lt;/div&gt;</description><author>fpatou</author><pubDate>Thu, 25 Apr 2013 13:06:57 GMT</pubDate><guid isPermaLink="false">New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012 20130425010657P</guid></item><item><title>New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012</title><link>http://asstoredprocedures.codeplex.com/discussions/441519</link><description>&lt;div style="line-height: normal;"&gt;You are right !!!!&lt;br /&gt;
&lt;br /&gt;
For your information as I was in a hurry i used &lt;a href="http://monodevelop.com/" rel="nofollow"&gt;http://monodevelop.com/&lt;/a&gt; as a free alternative to VS2010 ! and it works great now i can manage to compile !!!!!&lt;br /&gt;
&lt;br /&gt;
thank you&lt;br /&gt;
&lt;/div&gt;</description><author>fpatou</author><pubDate>Thu, 25 Apr 2013 13:06:57 GMT</pubDate><guid isPermaLink="false">New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012 20130425010657P</guid></item><item><title>New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012</title><link>http://asstoredprocedures.codeplex.com/discussions/441519</link><description>&lt;div style="line-height: normal;"&gt;I believe msmgdsrv.dll for Analysis Services 2012 is a .NET 4 DLL. So I think you're right. you need to upgrade to a newer version of Visual Studio.&lt;br /&gt;
&lt;/div&gt;</description><author>furmangg</author><pubDate>Thu, 25 Apr 2013 12:46:33 GMT</pubDate><guid isPermaLink="false">New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012 20130425124633P</guid></item><item><title>New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012</title><link>http://asstoredprocedures.codeplex.com/discussions/441519</link><description>&lt;div style="line-height: normal;"&gt;I believe msmgdsrv.dll for Analysis Services 2012 is a .NET 4 DLL. So I think you're right. you need to upgrade to a newer version of Visual Studio.&lt;br /&gt;
&lt;/div&gt;</description><author>furmangg</author><pubDate>Thu, 25 Apr 2013 12:46:33 GMT</pubDate><guid isPermaLink="false">New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012 20130425124633P</guid></item><item><title>New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012</title><link>http://asstoredprocedures.codeplex.com/discussions/441519</link><description>&lt;div style="line-height: normal;"&gt;i use VS2008....i i cannot have a target on .net4....i guess i cannot use it with VS2008, do you confirm ?&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
&lt;/div&gt;</description><author>fpatou</author><pubDate>Thu, 25 Apr 2013 12:10:15 GMT</pubDate><guid isPermaLink="false">New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012 20130425121015P</guid></item><item><title>New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012</title><link>http://asstoredprocedures.codeplex.com/discussions/441519</link><description>&lt;div style="line-height: normal;"&gt;i use VS2008....i i cannot have a target on .net4....i guess i cannot use it with VS2008, do you confirm ?&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
&lt;/div&gt;</description><author>fpatou</author><pubDate>Thu, 25 Apr 2013 12:10:15 GMT</pubDate><guid isPermaLink="false">New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012 20130425121015P</guid></item><item><title>New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012</title><link>http://asstoredprocedures.codeplex.com/discussions/441519</link><description>&lt;div style="line-height: normal;"&gt;If you haven't already seen, there's a separate ASSP2012.csproj file in the source control for our project. I would definitely start from there then include your changes. It's a VS2010 project, but you should be able to upgrade it to VS2012 if you like.&lt;br /&gt;
&lt;br /&gt;
On my laptop, I do compile ASSP2012 using a msmgdsrv reference that points to:&lt;br /&gt;
C:\Program Files\Microsoft Analysis Services\AS OLEDB\110\msmgdsrv.dll&lt;br /&gt;
&lt;br /&gt;
Did you change your project to target .NET 4?&lt;br /&gt;
&lt;br /&gt;
If you have Analysis Services installed on your laptop, you can also find this DLL under the bin directory (depending on your instance name and where you installed it):&lt;br /&gt;
C:\program files\microsoft sql server\MSAS11.MSSQLSERVER\OLAP\bin&lt;br /&gt;
&lt;br /&gt;
Let us know if the above doesn't help and we'll research further.&lt;br /&gt;
&lt;/div&gt;</description><author>furmangg</author><pubDate>Thu, 25 Apr 2013 12:07:07 GMT</pubDate><guid isPermaLink="false">New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012 20130425120707P</guid></item><item><title>New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012</title><link>http://asstoredprocedures.codeplex.com/discussions/441519</link><description>&lt;div style="line-height: normal;"&gt;If you haven't already seen, there's a separate ASSP2012.csproj file in the source control for our project. I would definitely start from there then include your changes. It's a VS2010 project, but you should be able to upgrade it to VS2012 if you like.&lt;br /&gt;
&lt;br /&gt;
On my laptop, I do compile ASSP2012 using a msmgdsrv reference that points to:&lt;br /&gt;
C:\Program Files\Microsoft Analysis Services\AS OLEDB\110\msmgdsrv.dll&lt;br /&gt;
&lt;br /&gt;
Did you change your project to target .NET 4?&lt;br /&gt;
&lt;br /&gt;
If you have Analysis Services installed on your laptop, you can also find this DLL under the bin directory (depending on your instance name and where you installed it):&lt;br /&gt;
C:\program files\microsoft sql server\MSAS11.MSSQLSERVER\OLAP\bin&lt;br /&gt;
&lt;br /&gt;
Let us know if the above doesn't help and we'll research further.&lt;br /&gt;
&lt;/div&gt;</description><author>furmangg</author><pubDate>Thu, 25 Apr 2013 12:07:07 GMT</pubDate><guid isPermaLink="false">New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012 20130425120707P</guid></item><item><title>New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012</title><link>http://asstoredprocedures.codeplex.com/discussions/441519</link><description>&lt;div style="line-height: normal;"&gt;Hello..&lt;br /&gt;
&lt;br /&gt;
Switching form SSAS 2008R2 to 2012, i would like to recompile ASSP with our update :-)...but&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Warning	29	The referenced component 'msmgdsrv' could not be found.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Please help as i reference 	msmgdsrv from V11 (2012).&lt;br /&gt;
&lt;br /&gt;
of course this DLL is present in 64 and 32 bit in folder :&lt;br /&gt;
&lt;br /&gt;
C:\Program Files\Microsoft Analysis Services\AS OLEDB\110&lt;br /&gt;
C:\Program Files x86)\Microsoft Analysis Services\AS OLEDB\110&lt;br /&gt;
&lt;br /&gt;
what is wrong ?&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
&lt;/div&gt;</description><author>fpatou</author><pubDate>Thu, 25 Apr 2013 09:14:32 GMT</pubDate><guid isPermaLink="false">New Post: ASSP2012 in MVS2008 cannot reference msmgdsrv 2012 20130425091432A</guid></item></channel></rss>