<?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>PerformancePoint Blog &#187; SQL Reporting Services</title>
	<atom:link href="http://performancepointblog.com/category/sqlreportingservices/feed/" rel="self" type="application/rss+xml" />
	<link>http://performancepointblog.com</link>
	<description>A Blog about PerformancePoint, SQL Reporting Services and all the nummy BI technologies that interact with them</description>
	<lastBuildDate>Fri, 16 Jul 2010 01:02:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Creating Pivot collections via Reporting Services &amp; SQL Analysis Services: Challenges and Solutions!</title>
		<link>http://performancepointblog.com/2010/06/creating-pivot-collections-via-reporting-services-sql-analysis-services-challenges-and-solutions/</link>
		<comments>http://performancepointblog.com/2010/06/creating-pivot-collections-via-reporting-services-sql-analysis-services-challenges-and-solutions/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 12:35:32 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Pivot]]></category>
		<category><![CDATA[SQL Analysis Services]]></category>
		<category><![CDATA[SQL Reporting Services]]></category>

		<guid isPermaLink="false">http://performancepointblog.com/?p=178</guid>
		<description><![CDATA[While watching the keynote from the recent BI Conference, I saw a demo of the Pivotviewer Extensions for Reporting Services. This is an interesting tool that will help automate creating Pivot collections. Unfortunately, even as an Microsoft FTE I can’t get my hands on a preview copy until after the end of the month…and I [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://performancepointblog.com/2010/06/creating-pivot-collections-via-reporting-services-sql-analysis-services-challenges-and-solutions/";
		digg_bgcolor = "";
		digg_skin = "";
		digg_window = "";
		digg_title = "Creating+Pivot+collections+via+Reporting+Services+%26%23038%3B+SQL+Analysis+Services%3A+Challenges+and+Solutions%21";
		digg_media = "";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p>While watching the keynote from the recent BI Conference, I saw a demo of the <em>Pivotviewer Extensions for Reporting Services</em>. This is an interesting tool that will help automate creating Pivot collections. Unfortunately, even as an Microsoft FTE I can’t get my hands on a preview copy until after the end of the month…and I have a project due before then.</p>
<p>So, what the hell, let’s re-create the wheel! You can download some samples <strong><span style="color: #000000;"><a href="http://performancepointblog.com/wp-content/uploads/2010/06/Samples.zip" target="_blank">here</a></span></strong>. The samples aren’t a complete solution, but demonstrate the uglier/trickier bits of the process.  The code is ugly and not commented…you get what you pay for.</p>
<h2 style="text-align: left;"><span style="color: #000000;">Goal:</span></h2>
<p>Create a collection which surfaces <em>online advertising</em> metrics (impressions, clicks, click through rates, etc.) for 10 ad agency clients. Each client has multiple campaigns and placements with a number of different packages, ads, and creative items which are served by multiple vendor websites.  </p>
<p>Create a Pivot “card” for each combination of Client-Campaign-Placement-Ad-Site . Each “card” should also display interesting metrics on a day-by-day basis.</p>
<p>All data is to be sourced from an SSAS cube.</p>
<h2><span style="color: #000000;">Approach:</span></h2>
<p>Short and sweet: Create an SSRS report and code to repeatedly export a JPEG in order to generate the images used in the Pivot collection. Once complete, use the Pivot command-line tools to create the cxml document. Simple, right? Here’s how I did it:</p>
<p><strong>Pull information from SSAS</strong></p>
<p>First, I &#8220;wrote some MDX&#8221; to pull dimension attributes (like client, campaign, etc.) and metrics (impressions, clicks, click through rate)  from the cube.  I had to add additional fields to this query to return the actual UNIQUENAME of the dimension members I was returning. Why? You’ll see in the next section…</p>
<p>WITH          <br />
MEMBER [Measures].[ClientNameUNIQUE] AS [Clients].[Client Name].CURRENTMEMBER.UNIQUENAME          <br />
MEMBER [Measures].[CampaignNameUNIQUE] AS [Campaigns].[Campaign Name].CURRENTMEMBER.UNIQUENAME<br />
MEMBER [Measures].[AdNameUNIQUE] AS [Ads].[Ad Name].CURRENTMEMBER.UNIQUENAME<br />
MEMBER [Measures].[SiteNameUNIQUE] AS [Ads].[DFA Site Name].CURRENTMEMBER.UNIQUENAME          <br />
        <br />
SELECT {[Measures].[ClientNameUNIQUE], [Measures].[CampaignNameUNIQUE] , [Measures].[AdNameUNIQUE], [Measures].[SiteNameUNIQUE],<br />
 [Measures].[Impressions],[Measures].[Clicks],[Measures].[CTR],[Measures].[Calculated Cost],[Measures].[Direct Sales], [Measures].[Indirect Sales]} ON COLUMNS,<br />
NONEMPTY(         <br />
{ { { [Date].[Year].[All].CHILDREN } *<br />
{ [Clients].[Client Name].[All].CHILDREN}  *<br />
{ [Campaigns].[Campaign Name].[Campaign Name].ALLMEMBERS} *<br />
{ [Placements].[Target Market].[Target Market].ALLMEMBERS} *<br />
{ [Placements].[Package Name].[Package Name].ALLMEMBERS} *<br />
{ [Ads].[Ad Name].[Ad Name].ALLMEMBERS} *<br />
{ [Ads].[DFA Site Name].[DFA Site Name].ALLMEMBERS} *<br />
{ [Creative].[Technology Type Name].[Technology Type Name].ALLMEMBERS}</p>
<p> }}</p>
<p>, [Measures].[Impressions]) ON ROWS           <br />
FROM [WWReach]</p>
<p>I wrote a simple SSIS package (<a title="http://performancepointblog.com/wp-content/uploads/2010/06/Samples.zip" href="http://performancepointblog.com/wp-content/uploads/2010/06/Samples.zip">PopulatePivotSupport.dtsx</a>) to take the resultset from this query and drop it into SQL for staging purposes.</p>
<p><strong>Create SSRS report</strong></p>
<p>Next, I created a parameterized SSRS report which contains a fictional client logo, as well as multiple SSRS charts which are used to plot daily online metrics for the client/campaign in question.</p>
<p>The report is parameterized so that I can feed in arbitrary values used to filter data in the charts.  My report uses 5  parameters to filter by  client, campaign, ad, (vendor) site, ad serving technology, etc.</p>
<p>Here’s an example :</p>
<p><img class="alignnone size-full wp-image-180" title="SampleReport" src="http://performancepointblog.com/wp-content/uploads/2010/06/wwReach1497.jpg" alt="" width="500" height="717" /></p>
<p>A <a href="http://performancepointblog.com/wp-content/uploads/2010/06/Samples.zip">sample RDL</a> can be found in the files I mentioned at the top of the article.</p>
<p>Challenge #1</p>
<p>Things normally don’t go 100% smoothly for me when I need to do heavy parameterization on a report which uses SSAS as a data source. I normally have issues with StrToSet-related errors, trying to plug in values which SSRS doesn’t see as valid (due to CONSTRAINED flags in my MDX), etc.  To try and avoid as many of these problems as possible, I did the following for each parameter in my report:</p>
<ul>
<li>Deselected <strong>Allow multiple values</strong></li>
<li>Under <strong>Available Values</strong>, I chose <strong>None</strong> instead of <strong>Query</strong></li>
<li>Double-checked that I only had one default value per parameter (see bullet #1)</li>
<li>Removed the CONSTRAINED sections of MDX from my queries</li>
</ul>
<p>Challenge #2</p>
<p>I need to provide parameter values to SSRS/SSAS in the [dimension].[attribute].&amp;[attributekey] format.  That’s why I created several MEMBERs in my MDX. I used those to return not only a dimension attribute value like “Us Rail” (a client’s name), but the client’s Unique Name: [Clients].[Client Name].&amp;1001. This was the critical step. Life was good once I had all the “friendly” values (like Client Name = “Us Rail”) as well as the “not so friendly ones” that I needed to feed back to SSAS for filtering purposes ([Clients].[Client Name].&amp;1001) in a staging table.</p>
<p><strong>Write code to render (repeatedly) reports to JPEG files</strong></p>
<p>I decided to create another <a href="http://performancepointblog.com/wp-content/uploads/2010/06/Samples.zip">SSIS package</a> named  PrintSSRS.dtsx to do this work. Essentially, the package does the following:</p>
<ul>
<li>Grabs rows from the staging table. Each row runs my SSRS report once.  I used an <strong>Execute SQL</strong> task for this and stuffed the results into an Object Variable</li>
<li>Uses a <strong>For..Each</strong> task to iterate through the rows in the Object variable, grabbing values from each row like the Client ID, Campaign Key, Site ID, etc.</li>
<li>Executes a <strong>Script </strong>task inside the For…Each loop. The script task populates the SSRS report’s parameter collection and calls .Render() against SSRS to create the JPEG report which is saved to disk.</li>
</ul>
<p>..I ended up with about 5,500 JPEG “reports” on my hard drive&#8230;each one was about 50K. It took about 2 hours in total for this code to generate all the reports I needed.</p>
<p><strong>Generate the Pivot Collection</strong></p>
<p>Since I hadn’t used the (new) Pivot Command-line tools yet , I thought I would give those a try instead of the Excel-Add in. You can download them from <a href="http://www.getpivot.com/">http://www.getpivot.com</a></p>
<p>I still used Excel heavily though:</p>
<ul>
<li>First I imported that staging table from SQL into a worksheet.</li>
<li>I deleted the Excel columns I didn’t care about (the &#8220;MEMBER&#8221; columns)</li>
<li>I used the Pivot documentation to create 3 worksheets in Excel which defined my collection</li>
<li>I ran the Command-line tool to create a deepzoom output and went to dinner.</li>
</ul>
<p>I’ve dropped the workbook I created into the <a href="http://performancepointblog.com/wp-content/uploads/2010/06/Samples.zip">samples</a>, too.</p>
<p><strong>Other Stuff</strong></p>
<p>I learned the hard way that I should have spent a bit more time with the Pivot developer documents. My first collection actually consisted of over 72K distinct Pivot tiles because I decided to also break down my clients/campaigns/ads/sites/technologies by <strong>week. </strong>Bad idea &#8211; I actually couldn&#8217;t get the command-line tools to finish the job of creating the CXML file&#8230;they would run out of memory on my 16 GB box before they were through <img src='http://performancepointblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I next tried breaking things down by month instead of week&#8230;I was able to get a working collection of about 15K tiles at that point, but it looked terrible in viewer. So, I threw our the idea of filtering by time altogether, and here is the result (FYI, &#8220;City of New York&#8221; is purely fictional &#8211; I&#8217;m a native, so just used them as a make-believe ad agency client):</p>
<p style="text-align: center;"> <a href="http://performancepointblog.com/wp-content/uploads/2010/06/ScreenHunter_01-Jun.-30-08.49.gif"><img class="size-full wp-image-226 aligncenter" title="ScreenHunter_01 Jun. 30 08.49" src="http://performancepointblog.com/wp-content/uploads/2010/06/ScreenHunter_01-Jun.-30-08.49.gif" alt="" width="475" height="343" /></a></p>
<p>As I said, I should have RTFM, because it said my collections should try and stick to around 5,000 items.</p>
<p>So there you go. If you&#8217;re impatient and don&#8217;t want to wait for the &#8220;official&#8221; PivotViewer Extensions, just roll one yourself. Microsoft&#8217;s version is going to be much better than this hack, btw: faster, able to handle more rows, etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://performancepointblog.com/2010/06/creating-pivot-collections-via-reporting-services-sql-analysis-services-challenges-and-solutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t find ReportExecutionService?</title>
		<link>http://performancepointblog.com/2010/06/cant-find-reportexecutionservice/</link>
		<comments>http://performancepointblog.com/2010/06/cant-find-reportexecutionservice/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 12:31:37 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[SQL Reporting Services]]></category>

		<guid isPermaLink="false">http://performancepointblog.com/?p=176</guid>
		<description><![CDATA[Proof positive you need to keep writing code or your skills atrophy. This morning I needed to write some simple code to render an SSRS report as an image using the SSRS Web Services&#8230;. In VS, I added a Service Reference to ReportExecution2005.asmx and my proxy was dutifully generated. However, I couldn&#8217;t find ReportExecutionService &#8211; [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://performancepointblog.com/2010/06/cant-find-reportexecutionservice/";
		digg_bgcolor = "";
		digg_skin = "";
		digg_window = "";
		digg_title = "Can%26%238217%3Bt+find+ReportExecutionService%3F";
		digg_media = "";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p>Proof positive you need to keep writing code or your skills atrophy. This morning I needed to write some simple code to render an SSRS report as an image using the SSRS Web Services&#8230;.</p>
<p>In VS, I added a Service Reference to ReportExecution2005.asmx and my proxy was dutifully generated. However, I couldn&#8217;t find ReportExecutionService &#8211; the only thing I saw that looked &#8220;about right&#8221; was ReportExecutionServiceSoap and ReportExecutionServiceSoapClient.</p>
<p>I flailed around for a bit and then realized I hadn&#8217;t actually added a Web Reference, I had added a Service Reference: Two different things. I killed my Service References, opened the Add Service Reference dialog, and clicked the Advanced button &#8211; The &#8220;Add a Web Reference isntead of a Service Reference&#8221; button was all I needed.</p>
]]></content:encoded>
			<wfw:commentRss>http://performancepointblog.com/2010/06/cant-find-reportexecutionservice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Business Intelligence Indexing Connector &#8220;breaks&#8221; PowerPivot Gallery on &#8220;All in One&#8221; machine</title>
		<link>http://performancepointblog.com/2010/06/business-intelligence-indexing-connector-breaks-powerpivot-gallery/</link>
		<comments>http://performancepointblog.com/2010/06/business-intelligence-indexing-connector-breaks-powerpivot-gallery/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 20:21:16 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[PowerPivot]]></category>
		<category><![CDATA[SQL Reporting Services]]></category>

		<guid isPermaLink="false">http://performancepointblog.com/?p=172</guid>
		<description><![CDATA[Today I installed the BI Indexing Connector for the first time (neat stuff!) and pretty quickly saw a change in the way the PowerPivot gallery renders Reporting Services reports. When installing the backend component of the connector, you are instructed to append NoGetRedirect=&#8221;True&#8221; to a partcular element in the ServerFiles_ReportServer.xml file (http://technet.microsoft.com/en-us/library/ff678217.aspx). Doing so allows [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://performancepointblog.com/2010/06/business-intelligence-indexing-connector-breaks-powerpivot-gallery/";
		digg_bgcolor = "";
		digg_skin = "";
		digg_window = "";
		digg_title = "Business+Intelligence+Indexing+Connector+%26%238220%3Bbreaks%26%238221%3B+PowerPivot+Gallery+on+%26%238220%3BAll+in+One%26%238221%3B+machine";
		digg_media = "";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p>Today I installed the BI Indexing Connector for the first time (neat stuff!) and pretty quickly saw a change in the way the PowerPivot gallery renders Reporting Services reports.</p>
<p>When installing the backend component of the connector, you are instructed to append <strong>NoGetRedirect=&#8221;True&#8221;</strong> to a partcular element in the ServerFiles_ReportServer.xml file (<a href="http://technet.microsoft.com/en-us/library/ff678217.aspx">http://technet.microsoft.com/en-us/library/ff678217.aspx</a>). Doing so allows the connector to crawl Reporting Services reports.</p>
<p>Unfortunately, this change also modifies how the PowerPivot Gallery Silverlight application renders SSRS reports. The default behavior is &#8220;click on an SSRS report and I&#8217;ll render it for you in the browser&#8221;.  However, once you make the change above, when you click on an SSRS report in the PowerPivot Theater, Carousel, or Gallery&#8230;whoops!</p>
<p>Rather than rendering the report as one would expect, the actual RDL file for the report  is returned to the browser and you get the standard &#8220;Save as File&#8221; dialog!</p>
<p>I&#8217;ll update this post when I find out more about the behavior, but if you bump into this issue, you&#8217;ve done nothing wrong <img src='http://performancepointblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Update 1:</strong></p>
<p>Looks like this is only occurs if you install everything on <em>one</em> machine. In the real world, I suspect that very few people running FAST will do what I did in terms of building out a machine which acts as a front-end and back-end. However, if you do, be prepared.</p>
]]></content:encoded>
			<wfw:commentRss>http://performancepointblog.com/2010/06/business-intelligence-indexing-connector-breaks-powerpivot-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server Reporting Services Reports in the PowerPivot Gallery</title>
		<link>http://performancepointblog.com/2009/11/sql-server-reporting-services-reports-in-the-powerpivot-gallery/</link>
		<comments>http://performancepointblog.com/2009/11/sql-server-reporting-services-reports-in-the-powerpivot-gallery/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 13:56:06 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Project Gemini]]></category>
		<category><![CDATA[SQL Reporting Services]]></category>

		<guid isPermaLink="false">http://performancepointblog.com/?p=139</guid>
		<description><![CDATA[Yes, it is totally possible to publish a SSRS report into your PowerPivot Gallery &#8211; In fact, the gallery invites you to do so with the &#8220;New Report Builder Report&#8221; item in the PowerPivot gallery&#8217;s silverlight application. But as my buddy George Orwell might say, &#8220;All reports are equal, but some reports are more equal than others.&#8221; Essentially, [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://performancepointblog.com/2009/11/sql-server-reporting-services-reports-in-the-powerpivot-gallery/";
		digg_bgcolor = "";
		digg_skin = "";
		digg_window = "";
		digg_title = "SQL+Server+Reporting+Services+Reports+in+the+PowerPivot+Gallery";
		digg_media = "";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p>Yes, it is totally possible to publish a SSRS report into your PowerPivot Gallery &#8211; In fact, the gallery invites you to do so with the &#8220;New Report Builder Report&#8221; item in the PowerPivot gallery&#8217;s silverlight application.</p>
<p>But as my buddy George Orwell might say, &#8220;All reports are equal, but some reports are more equal than others.&#8221;</p>
<p>Essentially, you&#8217;re not going to get a snapshot generated for your SSRS reports stored here.</p>
<p><a href="http://performancepointblog.com/wp-content/uploads/2009/11/1-SSRSReport.png"><img class="alignnone size-full wp-image-140" title="1-SSRSReport" src="http://performancepointblog.com/wp-content/uploads/2009/11/1-SSRSReport.png" alt="1-SSRSReport" width="883" height="298" /></a></p>
<p>The status message displayed can be somewhat confusing, too: &#8220;Snapshots were disabled to protect sensitive content&#8221; is dead on the money, but infers there might be a way to <em>enable</em> this sensitive content. Don&#8217;t waste your time looking for the magic property to enable dynamic SSRS snapshots, however. No such animal.</p>
<p>The &#8220;Snapshots were disabled&#8221; message is used in a number of situations where connections in a xlsx published to the gallery aren&#8217;t quite right, and I guess we chose to lump the SSRS scenario in with them.</p>
]]></content:encoded>
			<wfw:commentRss>http://performancepointblog.com/2009/11/sql-server-reporting-services-reports-in-the-powerpivot-gallery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Failed attempt to install KB967723  breaks Excel Services, SSRS Integration, RSS Feeds</title>
		<link>http://performancepointblog.com/2009/11/failed-attempt-to-install-kb967723-breaks-excel-services-ssrs-integration-rss-feeds/</link>
		<comments>http://performancepointblog.com/2009/11/failed-attempt-to-install-kb967723-breaks-excel-services-ssrs-integration-rss-feeds/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 12:24:50 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SQL Reporting Services]]></category>
		<category><![CDATA[#troubleshooting]]></category>

		<guid isPermaLink="false">http://performancepointblog.com/?p=83</guid>
		<description><![CDATA[Last week I was in a bit of a panic when Excel Services and SQL Reporting Services (MOSS Integrated) broke on nearly all of my &#8220;demo&#8221; Hyper-V images. I could publish to Excel Services, but attempting to render caused this exception to get thrown: ProcessWebException: A Web exception during ExecuteWebMethod has occurred for server: http://atlasone:56737/SharedServices1/ExcelCalculationServer/ExcelService.asmx, [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://performancepointblog.com/2009/11/failed-attempt-to-install-kb967723-breaks-excel-services-ssrs-integration-rss-feeds/";
		digg_bgcolor = "";
		digg_skin = "";
		digg_window = "";
		digg_title = "Failed+attempt+to+install+KB967723++breaks+Excel+Services%2C+SSRS+Integration%2C+RSS+Feeds";
		digg_media = "";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p>Last week I was in a bit of a panic when Excel Services and SQL Reporting Services (MOSS Integrated) broke on nearly all of my &#8220;demo&#8221; Hyper-V images. </p>
<p>I could publish to Excel Services, but attempting to render caused this exception to get thrown:</p>
<p><em>ProcessWebException: A Web exception during ExecuteWebMethod has occurred for server: http://atlasone:56737/SharedServices1/ExcelCalculationServer/ExcelService.asmx, method: OpenWorkbook, ex: System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a receive. &#8212;> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. &#8212;> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host     at System.Net.Sockets.Socket.Receive(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags)     at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)  </em></p>
<p>All of these machines had worked flawlessly before, so I was flummoxed.</p>
<p>In addition, when I tried to render any SSRS MOSS Integrated reports&#8230;no joy:</p>
<p><em>Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host</em></p>
<p>Interestingly enough, if I manually browsed to http:&#47;&#47;server&#47;reportserver, I could run reports with no problems&#8230;just no luck via MOSS</p>
<p> I also noticed that all of the RSS feeds on my MOSS site had stopped working.</p>
<p>After doing a bit of back-tracking, I saw that all of these boxes had one thing in common: Windows Update had attempted to install security hotfix KB967723, and for reasons unknown, the process had failed. If there was no initial attempt to install KB967723, I had no problems&#8230;if WU tried to install it, my image was hosed.</p>
<p><strong>Happy endings</strong>: By manually downloading and installing the hotfix and then bouncing the machine, all the broken stuff started functioning correctly. (The hotfix just happens to be network-related in nature, go figure)  </p>
<p>Posting this in the hopes I can give someone back an afternoon of their lives!</p>
]]></content:encoded>
			<wfw:commentRss>http://performancepointblog.com/2009/11/failed-attempt-to-install-kb967723-breaks-excel-services-ssrs-integration-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Click Once Report Builder 2.0 now in SQL Server 2008 SP1 CTP</title>
		<link>http://performancepointblog.com/2009/02/click-once-report-builder-20-now-in-sql-server-2008-sp1-ctp/</link>
		<comments>http://performancepointblog.com/2009/02/click-once-report-builder-20-now-in-sql-server-2008-sp1-ctp/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 02:41:45 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[SQL Reporting Services]]></category>

		<guid isPermaLink="false">http://performancepointblog.com/?p=37</guid>
		<description><![CDATA[If you&#8217;ve been waiting for the Click Once version of Report Builder 2.0, your wait is over (as long as you don&#8217;t mind using non-RTM bits). The SP1 CTP will allow you to launch RB 1.0 or 2.0 as Click Once applications in both Native and MOSS integrated mode. Have at it! http://www.microsoft.com/downloads/details.aspx?FamilyID=6f26fc45-f0ca-49cf-a6ee-840c7e8bb8af&#38;displaylang=en Oh, and [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://performancepointblog.com/2009/02/click-once-report-builder-20-now-in-sql-server-2008-sp1-ctp/";
		digg_bgcolor = "";
		digg_skin = "";
		digg_window = "";
		digg_title = "Click+Once+Report+Builder+2.0+now+in+SQL+Server+2008+SP1+CTP";
		digg_media = "";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p>If you&#8217;ve been waiting for the Click Once version of Report Builder 2.0, your wait is over (as long as you don&#8217;t mind using non-RTM bits).</p>
<p>The SP1 CTP will allow you to launch RB 1.0 or 2.0 as Click Once applications in both Native and MOSS integrated mode.</p>
<p>Have at it!</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6f26fc45-f0ca-49cf-a6ee-840c7e8bb8af&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=6f26fc45-f0ca-49cf-a6ee-840c7e8bb8af&amp;displaylang=en</a></p>
<p>Oh, and how to do you turn it on? In native mode, go to <strong>Site Settings</strong>,  then set <strong>Custom</strong> <strong>Report Builder launch URL</strong> to <em>/ReportBuilder/ReportBuilder_2_0_0_0.application. </em>MOSS integrated mode has a similar property which can be found in the <strong>Set Server Defaults</strong> link of the Reporting Services section of the <strong>Application Management</strong> inside the SPS Central Administration console.</p>
]]></content:encoded>
			<wfw:commentRss>http://performancepointblog.com/2009/02/click-once-report-builder-20-now-in-sql-server-2008-sp1-ctp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL 2008 Cumulative Update 1 &#8211; Something nice for SQL Reporting Lovers</title>
		<link>http://performancepointblog.com/2008/10/sql-2008-cumulative-update-1-something-nice-for-sql-reporting-lovers/</link>
		<comments>http://performancepointblog.com/2008/10/sql-2008-cumulative-update-1-something-nice-for-sql-reporting-lovers/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 12:42:56 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[SQL Reporting Services]]></category>

		<guid isPermaLink="false">http://performancepointblog.com/?p=26</guid>
		<description><![CDATA[SQL Server 2008 Cumulative Update 1 was released a few weeks ago, and contains a very nice (but not promoted) improvement around PDF rendering. For those who regularly render reports which require specific fonts and character sets (for example, trying to render a &#8220;simple Chinese&#8221; language report to PDF), you need to have the font [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://performancepointblog.com/2008/10/sql-2008-cumulative-update-1-something-nice-for-sql-reporting-lovers/";
		digg_bgcolor = "";
		digg_skin = "";
		digg_window = "";
		digg_title = "SQL+2008+Cumulative+Update+1+%26%238211%3B+Something+nice+for+SQL+Reporting+Lovers";
		digg_media = "";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p>SQL Server 2008 Cumulative Update 1 was released a few weeks ago, and contains a very nice (but not promoted) improvement around PDF rendering.</p>
<p>For those who regularly render reports which require specific fonts and character sets (for example, trying to render a &#8220;simple Chinese&#8221; language report to PDF), you need to have the font in question installed on client where you read the exported PDF or you see garbage. Our PDF rendering extension didn&#8217;t include &#8220;font embedding&#8221; in 2000/2005/2008 RTM, which something that the Acrobat format does support.</p>
<p>Well, in CU1, we added font embedding to the PDF extension &#8211; multilingual reports just got a little bit easier!</p>
]]></content:encoded>
			<wfw:commentRss>http://performancepointblog.com/2008/10/sql-2008-cumulative-update-1-something-nice-for-sql-reporting-lovers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reporting Services 2008 Upgrade FAQs</title>
		<link>http://performancepointblog.com/2008/09/reporting-services-2008-faqs/</link>
		<comments>http://performancepointblog.com/2008/09/reporting-services-2008-faqs/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 12:16:47 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[SQL Reporting Services]]></category>

		<guid isPermaLink="false">http://performancepointblog.com/?p=25</guid>
		<description><![CDATA[Late last week I stumbled into a really informative conversation around how 2005 reports are &#8220;automagically&#8221; upgraded to 2008. Thought I&#8217;d post the broad strokes here in FAQ format for everyone&#8217;s use. Thanks to Robert Bruckner who contributed most of the information!    Q: If I upgrade my instance of SSRS 2005 to 2008, what [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://performancepointblog.com/2008/09/reporting-services-2008-faqs/";
		digg_bgcolor = "";
		digg_skin = "";
		digg_window = "";
		digg_title = "Reporting+Services+2008+Upgrade+FAQs";
		digg_media = "";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: ">Late last week I stumbled into a really informative conversation around how 2005 reports are &#8220;automagically&#8221; upgraded to 2008. Thought I&#8217;d post the broad strokes here in FAQ format for everyone&#8217;s use. Thanks to Robert Bruckner who contributed most of the information!</span><span style="font-size: 10pt; font-family: "> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: "> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: ">Q: If I upgrade my instance of SSRS 2005 to 2008, what happens to the reports in reportserver database? Do they get automatically upgraded?</span><span style="font-size: 10pt; font-family: "> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: ">A: Reports in the catalog are automatically upgraded from 2005 to 2008 when they are first run on the newly upgraded machine. Each report is upgraded only once, not each time it is run. </span><span style="font-size: 10pt; font-family: "> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: ">Q: If my report gets automatically upgraded to the 2008 schema, can I get my original 2005 report back somehow? </span><span style="font-size: 10pt; font-family: "> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: ">A: Yes, you can. The upgrade process does not actually delete the original 2005 report, but simply makes a copy of it and stores the compiled result. If you “Edit” the report using Report Manager (to download a copy of the RDL) or call GetReportDefinition(), the original 2005 report definition will be returned.</span><span style="font-size: 10pt; font-family: "> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: ">Q: What if the report doesn’t get upgraded for some reason – will it still run on 2008?</span><span style="font-size: 10pt; font-family: "> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: ">A: SQL Server Reporting Services 2008 has the ability to render reports using the new “on demand” engine, and the older 2005 engine. </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: ">Q: So, if my 2005 report gets automatically upgraded to the 2008 RDL schema, is there any way I can get the <em style="mso-bidi-font-style: normal;">upgraded</em> version (2008) out of the server for use elsewhere?</span><span style="font-size: 10pt; font-family: "> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: ">A: No. You’ll need to use BIDS or Report Builder (v2) to upgrade your 2005 report to the 2008 schema.</span><span style="font-size: 10pt; font-family: "> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: ">Q: I know that every once in a while, a 2005 report won’t auto-upgrade to 2008 successfully. How can I tell if a report I’m running is being rendered in 2005 or 2008 mode?</span><span style="font-size: 10pt; font-family: "> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: ">A: We attempt to upgrade a 2005 report to 2008 once and only once. If the process fails the first time, we don’t try again. To see which engine is being used to render a report, use the new ExecutionLog2 view in the reportserver database, examine the AdditionalInfo column and check the &lt;ProcessingEngine&gt; element. A value of <strong style="mso-bidi-font-weight: normal;">2 </strong>indicates the new 2008 “on demand” rendering engine was used, while a value of <strong style="mso-bidi-font-weight: normal;">1</strong> means the older, 2005 engine was used.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://performancepointblog.com/2008/09/reporting-services-2008-faqs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Where did the Reporting Services 2008 Add-in for SharePoint go?</title>
		<link>http://performancepointblog.com/2008/08/where-did-the-reporting-services-2008-add-in-for-sharepoint-go/</link>
		<comments>http://performancepointblog.com/2008/08/where-did-the-reporting-services-2008-add-in-for-sharepoint-go/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 14:59:15 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[SQL Reporting Services]]></category>

		<guid isPermaLink="false">http://performancepointblog.com/?p=23</guid>
		<description><![CDATA[With the RTM of SQL 2008, it looks like a slightly older version of the add-in has been removed from microsoft.com. Unfortunately, all of the search engines (including Live) are pointing at the old, dead page. If you search for the add-in directly from Microsoft.com, you&#8217;ll find it here: http://www.microsoft.com/downloads/details.aspx?FamilyID=200fd7b5-db7c-4b8c-a7dc-5efee6e19005&#38;DisplayLang=en]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://performancepointblog.com/2008/08/where-did-the-reporting-services-2008-add-in-for-sharepoint-go/";
		digg_bgcolor = "";
		digg_skin = "";
		digg_window = "";
		digg_title = "Where+did+the+Reporting+Services+2008+Add-in+for+SharePoint+go%3F";
		digg_media = "";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p>With the RTM of SQL 2008, it looks like a slightly older version of the add-in has been removed from microsoft.com. Unfortunately, all of the search engines (including Live) are pointing at the old, dead page.</p>
<p>If you search for the add-in <strong>directly</strong> from Microsoft.com, you&#8217;ll find it here:</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=200fd7b5-db7c-4b8c-a7dc-5efee6e19005&amp;DisplayLang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=200fd7b5-db7c-4b8c-a7dc-5efee6e19005&amp;DisplayLang=en</a></p>
]]></content:encoded>
			<wfw:commentRss>http://performancepointblog.com/2008/08/where-did-the-reporting-services-2008-add-in-for-sharepoint-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Proof positive that SSRS 2008 is superior to SSRS 2005</title>
		<link>http://performancepointblog.com/2008/07/proof-positive-that-ssrs-2008-is-superior-to-ssrs-2005/</link>
		<comments>http://performancepointblog.com/2008/07/proof-positive-that-ssrs-2008-is-superior-to-ssrs-2005/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 20:47:41 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[SQL Reporting Services]]></category>

		<guid isPermaLink="false">http://performancepointblog.com/?p=17</guid>
		<description><![CDATA[The SQLCAT team just released a very interesting technical note which compares the relative &#8220;scalability goodness&#8221; of Reporting Services 2005 to 2008. You can read the article just as well as I can, but here&#8217;s the executive summary, and the results are pretty impressive (bold is mine, btw) Executive Summary Reporting Services 2008 was able to respond [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://performancepointblog.com/2008/07/proof-positive-that-ssrs-2008-is-superior-to-ssrs-2005/";
		digg_bgcolor = "";
		digg_skin = "";
		digg_window = "";
		digg_title = "Proof+positive+that+SSRS+2008+is+superior+to+SSRS+2005";
		digg_media = "";
		digg_topic = "";
		digg_bodytext = "";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p>The SQLCAT team just released a very interesting <a href="http://sqlcat.com/technicalnotes/archive/2008/07/09/scaling-up-reporting-services-2008-vs-reporting-services-2005-lessons-learned.aspx">technical note</a> which compares the relative &#8220;scalability goodness&#8221; of Reporting Services 2005 to 2008. You can <a href="http://sqlcat.com/technicalnotes/archive/2008/07/09/scaling-up-reporting-services-2008-vs-reporting-services-2005-lessons-learned.aspx">read the article</a> just as well as I can, but here&#8217;s the executive summary, and the results are pretty impressive (bold is mine, btw)</p>
<h2 style="padding-left: 30px;">Executive Summary</h2>
<p style="padding-left: 30px;">Reporting Services 2008 was able to respond to <strong>3–4 times the total number of users</strong> and their requests on the same hardware without HTTP 503 Service Is Unavailable errors compared with Reporting Services 2005, regardless of the type of renderer. In stark contrast, Reporting Services 2005 generated excessive HTTP 503 Service Is Unavailable errors as the number of users and their requests increased, regardless of the report renderer.</p>
<p style="padding-left: 30px;">Our tests clearly show that the new memory management architecture of the report server enables Reporting Services 2008 to <strong>scale very well, particularly on the new four-processor</strong>, quad-core processors. With our test workload, Reporting Services 2008 <strong>consistently</strong> <strong>outperformed SQL Server 2005 with the PDF and XLS renderers</strong> on the four-processor, quad-core hardware platform (16 cores) both in terms of response time and in terms of total throughput. Furthermore, with these renderers on this hardware platform, Reporting Services dramatically outperformed other hardware platforms regardless of Reporting Services version, responding to 3–5 times the number of requests than when running on either of the other hardware platforms. As a result, we recommend that you scale up to four-processor, quad-core servers for performance and scale out to a two-node deployment for high availability. Thereafter, as demand for more capacity occurs, add more four-processor, quad-core servers.</p>
<p style="padding-left: 30px;">Finally, with all renderers and with all hardware platforms using our test workload, the performance <strong>bottlenecks were the processor on the front-end server and the disk subsystem on the data source</strong> with Reporting Services 2008, whereas the Reporting Services front-end Web service was the performance bottleneck with Reporting Services 2005.</p>
<p>It&#8217;s a whole new ballgame, folks!</p>
]]></content:encoded>
			<wfw:commentRss>http://performancepointblog.com/2008/07/proof-positive-that-ssrs-2008-is-superior-to-ssrs-2005/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
