<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Maria&amp;#39;s two cents</title><subtitle type="html" /><id>http://blogs.msdn.com/b/mariae/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mariae/" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/b/mariae/atom.aspx" /><generator uri="http://telligent.com" version="5.6.50428.7875">Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><updated>2012-03-21T09:53:00Z</updated><entry><title>Building a script to restart REPORTING SERVICES automatically</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mariae/archive/2013/05/14/building-a-script-to-restart-reporting-services-automatically.aspx" /><id>http://blogs.msdn.com/b/mariae/archive/2013/05/14/building-a-script-to-restart-reporting-services-automatically.aspx</id><published>2013-05-14T08:37:00Z</published><updated>2013-05-14T08:37:00Z</updated><content type="html">&lt;p&gt;Sometimes it can be useful to restart Reporting Services automatically using a script to avoid the initialization time it takes to start Reporting Services the first time it is being accessed, or to control the recycle process of the web service.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The following article explains how Reporting Services performs the recycle operations (&lt;em&gt;planned or unplanned&lt;/em&gt;):&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;Application Domains for Report Server Applications&lt;/strong&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/bb934330(v=sql.105).aspx"&gt;http://msdn.microsoft.com/en-us/library/bb934330(v=sql.105).aspx&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Additionally it could be possible that the recycle process happened when the memory pressure is high. More information in the following article:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;Configuring Available Memory for Report Server Applications &lt;/strong&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ms159206(v=sql.105).aspx"&gt;http://technet.microsoft.com/en-us/library/ms159206(v=sql.105).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;IN SUMMARY:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Reporting Services performs a recycle of the Report Server service every 12 hours (by default) depending on the value &lt;strong&gt;RecycleTime&lt;/strong&gt; in the configuration file.&lt;br /&gt;It is not possible to know the time in which the next recycle is going to happen.&lt;/p&gt;
&lt;p&gt;An alternative could be implementing a script that restarts Reporting Services (for example every night at the same time) and, once restarted, accesses the Report Server to refresh the cache.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;BUILDING A SCRIPT TO RESTART REPORTING SERVICES:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A good approach would be to control the recycling process and avoid it from happening during the execution of your reports/subscriptions/scripts would be to create a script&lt;br /&gt;in PowerShell that:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Restarts the Reporting Services Service&lt;/li&gt;
&lt;li&gt;Then wakes up the Report Manager to avoid the extra time it takes to load the page the first time is used.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The script could look like this (in PowerShell):&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;Stop-Service "SQL Server Reporting&lt;br /&gt;Services (MSSQLSERVER)"&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;Start-Service "SQL Server Reporting&lt;br /&gt;Services (MSSQLSERVER)"&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;$wc = New-Object system.net.webClient&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;$cred = [System.Net.CredentialCache]::DefaultNetworkCredentials&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;$wc.Credentials = $cred&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;$src = $wc.DownloadString("&lt;a href="http://localhost/Reports/Pages/Folder.aspx"&gt;http://localhost/Reports/Pages/Folder.aspx&lt;/a&gt;")&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; You need to substitute localhost by the name of your server&lt;/p&gt;
&lt;p&gt;You will run this script at&amp;nbsp;the same time&amp;nbsp;every day.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;To automate the PS script to run periodically we can use the follow command: schtasks&lt;/p&gt;
&lt;p&gt;You can find more Information at: &lt;a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/schtasks.mspx?mfr=true"&gt;http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/schtasks.mspx?mfr=true&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Or simply create a job in SQL Server to run the script.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;PERMISSIONS:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In the following link you can see the necessary permissions by the account that runs the rs script: (&lt;a href="http://msdn.microsoft.com/en-us/library/ms162839(v=sql.105).aspx"&gt;http://msdn.microsoft.com/en-us/library/ms162839(v=sql.105).aspx&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I hope it helps,&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;/em&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Maria Esteban&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Reporting Services Support Engineer&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10418370" width="1" height="1"&gt;</content><author><name>Maria Esteban</name><uri>http://blogs.msdn.com/mariae/ProfileUrlRedirect.ashx</uri></author><category term="Reporting Services" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Reporting+Services/" /><category term="Powershell" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Powershell/" /></entry><entry><title>Error 401 accessing the Report Manager in an environment configured in Scale Out</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mariae/archive/2013/01/23/error-401-accessing-the-report-manager-in-an-environment-configured-in-scale-out.aspx" /><id>http://blogs.msdn.com/b/mariae/archive/2013/01/23/error-401-accessing-the-report-manager-in-an-environment-configured-in-scale-out.aspx</id><published>2013-01-23T14:09:52Z</published><updated>2013-01-23T14:09:52Z</updated><content type="html">&lt;p&gt;When using a load balancer with several nodes in Reporting Services, you might notice that the Report Server (&lt;a href="http://%3cmachinename%3e/Reportserver"&gt;http://&amp;lt;machinename&amp;gt;/Reportserver&lt;/a&gt;)&lt;br /&gt;is accessible but Report Manager (&lt;a href="http://&lt;machinename&gt;/Reports"&gt;http://&amp;lt;machinename&amp;gt;/Reports&lt;/a&gt;) produces&amp;nbsp;the following error:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;em&gt;The request failed with HTTP status 401: Unauthorized.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;1. First of all you need to make sure that you configured the scale out of Reporting Services correctly by following the indications from the article below:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;strong&gt;Configuring a Report Server Scale-Out Deployment&lt;/strong&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/ms156453(v=SQL.90).aspx"&gt;http://msdn.microsoft.com/en-us/library/ms156453(v=SQL.90).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2. After that, if you have problems accessing the Report Manager locally, you can try disabling the loopbackcheck (steps in the link: &lt;a href="http://support.microsoft.com/kb/896861"&gt;http://support.microsoft.com/kb/896861&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;3. If you still have problems accessing the Report Manager remotely try modifying the &amp;lt;&lt;strong&gt;ReportServerUrl&lt;/strong&gt;&amp;gt; in the RSReportServer.config file with the url of the reportserver of the node.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The URL of the report server site for which the Report Manager tool searches is specified in the ReportServerUrl tag in the file RSWebApplication.config file. By default, if you leave this tag blank, the Report Manager tool uses "Localhost" as the server URL.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Maria Esteban&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Reporting Services Support Engineer&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10387564" width="1" height="1"&gt;</content><author><name>Maria Esteban</name><uri>http://blogs.msdn.com/mariae/ProfileUrlRedirect.ashx</uri></author><category term="Reporting Services" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Reporting+Services/" /><category term="Web Farm" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Web+Farm/" /></entry><entry><title>Configuring Reporting Services to send email subscriptions outside the organization</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mariae/archive/2013/01/04/configuring-reporting-services-to-send-email-subscriptions-outside-the-organization.aspx" /><id>http://blogs.msdn.com/b/mariae/archive/2013/01/04/configuring-reporting-services-to-send-email-subscriptions-outside-the-organization.aspx</id><published>2013-01-04T11:17:47Z</published><updated>2013-01-04T11:17:47Z</updated><content type="html">&lt;p&gt;It is possible to send a email subscriptions in Reporting Services to recipients that are outside the domain (on the internet). You would need to setup the following configurations:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;First of all, you might receive the following error when the e-mail subscription is running:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;ERROR 1:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;em&gt;Subscription Error: "The e-mail address of one or more recipients is not valid."&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;This error usually occurs when the SMTP server is not configured for "email relay". SMTP relay between the Reporting Services server and the SMTP server should be enabled.&lt;/p&gt;
&lt;p&gt;Ones the replay has being configured, you might receive the following error:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;ERROR 2:&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;em&gt;Failure sending mail: The server rejected the sender address. The server response was: 550 5.7.1 Client does not have permissions to send as this sender&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style="text-decoration: underline;"&gt;There are two more settings to configure apart from the Relay in the SMTP server:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;With authentication:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Configure the option &amp;lt;SMTPAuthenticate&amp;gt; to 2 in the rsreportserver.config&lt;br /&gt;file to specify that the report server connects to the remote SMTP server in an&lt;br /&gt;authenticated way. More info:&lt;/li&gt;
&lt;/ol&gt;
&lt;p style="padding-left: 60px;"&gt;&lt;strong&gt;Configuring a Report Server for E-Mail Delivery&lt;/strong&gt;&lt;/p&gt;
&lt;p style="padding-left: 60px;"&gt;&lt;a href="http://msdn.microsoft.com/en-gb/library/ms159155(v=sql.105).aspx"&gt;http://msdn.microsoft.com/en-gb/library/ms159155(v=sql.105).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;2. If you want to configure the relay authenticated, you need to give &amp;ldquo;Send As&amp;rdquo; permissions Reporting Services account in the SMTP server. &amp;ldquo;Send As&amp;rdquo; allows one user to send an email as though it came from another user. More info:&lt;/p&gt;
&lt;p style="padding-left: 60px;"&gt;&lt;strong&gt;How to Manually Grant Send As Permissions to a User with Full Mailbox Access&lt;/strong&gt;&lt;/p&gt;
&lt;p style="padding-left: 60px;"&gt;&lt;a href="http://technet.microsoft.com/en-us/library/bb125118(EXCHG.65).aspx"&gt;http://technet.microsoft.com/en-us/library/bb125118(EXCHG.65).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;Anonymous:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Configure the option &amp;lt;SMTPAuthenticate&amp;gt; to 0. More info:&lt;/li&gt;
&lt;/ol&gt;
&lt;p style="padding-left: 60px;"&gt;&lt;strong&gt;Configuring a Report Server for E-Mail Delivery&lt;/strong&gt;&lt;/p&gt;
&lt;p style="padding-left: 60px;"&gt;&lt;a href="http://msdn.microsoft.com/en-gb/library/ms159155(v=sql.105).aspx"&gt;http://msdn.microsoft.com/en-gb/library/ms159155(v=sql.105).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;2. Create a receive connector to accept the anonymous relay and add the IP of the Reporting Services machine to the list of IPs of the connector.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now you should be able to send emails outside the organization without errors&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Maria Esteban&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Reporting Services Support Engineer&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10382336" width="1" height="1"&gt;</content><author><name>Maria Esteban</name><uri>http://blogs.msdn.com/mariae/ProfileUrlRedirect.ashx</uri></author><category term="Reporting Services" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Reporting+Services/" /><category term="email" scheme="http://blogs.msdn.com/b/mariae/archive/tags/email/" /></entry><entry><title>Reporting Services service doesn't start after the installation of  MS12-070 security patch</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mariae/archive/2012/11/12/reporting-services-service-doesn-t-start-after-the-installation-of-ms12-070-security-patch.aspx" /><id>http://blogs.msdn.com/b/mariae/archive/2012/11/12/reporting-services-service-doesn-t-start-after-the-installation-of-ms12-070-security-patch.aspx</id><published>2012-11-12T12:48:00Z</published><updated>2012-11-12T12:48:00Z</updated><content type="html">&lt;p&gt;If you are using Reporting Services and Integration Services and you noticed that the service couldn't start after the installation of the MS12-070 security patch (&lt;a href="http://support.microsoft.com/kb/2716429"&gt;http://support.microsoft.com/kb/2716429&lt;/a&gt;) you can use the following 2 workarounds below.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;(the issue already&amp;nbsp;appeared in the past and was solved by&amp;nbsp;&lt;a href="http://support.microsoft.com/kb/936707/en-us"&gt;http://support.microsoft.com/kb/936707/en-us&lt;/a&gt;)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;/em&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style="text-decoration: underline;"&gt;&lt;strong&gt;Why is this happening?&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;When a .NET application startup the .NET Framework it tries to check if the Microsoft assemblies are right and have not been modified, this is done connecting to a server that has a revocation list in internet. When the framework tries to connect to the server to check if it has access to internet with an elevated timeout, this makes that any other .NET application that has less timeout setting fails (as SSIS or SSRS) with the error message you are getting.&lt;/p&gt;
&lt;p&gt;The error message you are getting when you try to start SSRS:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;"The request failed or the service did not respond in a timely fashion."&lt;/p&gt;
&lt;p&gt;Means that the SSRS timeout is lower than the timeout of the connection to the revoke list server. Some recent windows updates have introduced this issue after you installed SP2 of SSRS 2008 R2. We are&amp;nbsp; aware of this problem and we have already provided several workarounds.&lt;/p&gt;
&lt;p&gt;This issue affects to all applications that runs on .NET framework 2.0 and there are several workarounds for this problem:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;1st workaround:&amp;nbsp;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Modify the registry to increase the default time-out value for the service control manager. To increase this value to 60 seconds, follow these steps:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1. Click &lt;strong&gt;Start&lt;/strong&gt;, click &lt;strong&gt;Run&lt;/strong&gt;, type &lt;strong&gt;regedit&lt;/strong&gt;,and then click &lt;strong&gt;OK&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2. Locate and then click the following registry subkey:&lt;/p&gt;
&lt;p style="padding-left: 60px;"&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3. &amp;nbsp;In the right pane, locate the &lt;strong&gt;ServicesPipeTimeout&lt;/strong&gt; entry.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Note&lt;/strong&gt; If the ServicesPipeTimeout entry does not exist, you must cr&amp;eacute;ate it. To do this, follow these steps:&lt;/p&gt;
&lt;ol&gt;&lt;ol&gt;
&lt;li&gt;On the &lt;strong&gt;Edit &lt;/strong&gt;menu, point to &lt;strong&gt;New&lt;/strong&gt;, and then click &lt;strong&gt;DWORD Value&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Type &lt;strong&gt;ServicesPipeTimeout&lt;/strong&gt;, and then press ENTER.&lt;/li&gt;
&lt;li&gt;Right-click &lt;strong&gt;ServicesPipeTimeout&lt;/strong&gt;, and then click &lt;strong&gt;Modify&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;Decimal&lt;/strong&gt;, type &lt;strong&gt;60000&lt;/strong&gt;, and then click &lt;strong&gt;OK&lt;/strong&gt;.&lt;br /&gt;This value represents the time in milliseconds befor&lt;/li&gt;
&lt;/ol&gt;&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Restart the computer for the changes to take effect.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Check that SSRS and SSIS services can be started&amp;nbsp;now...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;2nd workaround:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;If the first action plan didn't work, try &lt;span style="font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: ES; mso-bidi-language: AR-SA;" lang="EN-US"&gt;disabled the certificate checking in the ReportingServicesService.exe.config file&lt;/span&gt;:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Edit the &lt;span style="font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: ES; mso-bidi-language: AR-SA;" lang="EN-US"&gt;ReportingServicesService.exe.config &lt;/span&gt;file usually located&amp;nbsp;in this folder: C:\Program Files\Microsoft SQL Server\&amp;lt;RS Instance&amp;gt;\Reporting Services\ReportServer\bin&lt;/li&gt;
&lt;li&gt;Add the "&amp;lt;generatePublisherEvidence enabled="false"/&amp;gt;" within the &amp;lt;Runtime&amp;gt; tag&lt;/li&gt;
&lt;li&gt;Patch the server with the KB.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;If you want to distribute this workaround to many users you can cr&amp;eacute;ate a script in PowerShell&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;3rd&amp;nbsp;workaround:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Another option would be disabling the global checking of the certificated in the machine following the steps below:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;o&amp;nbsp;&amp;nbsp; Start -&amp;gt; Control panel&lt;br /&gt;o&amp;nbsp;&amp;nbsp; Internet Options&lt;br /&gt;o&amp;nbsp;&amp;nbsp; Advanced&lt;br /&gt;o&amp;nbsp;&amp;nbsp; Uncheck "Check for publisher&amp;rsquo;s certificate revocation"&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;If the services are running under the &lt;strong&gt;Network Service&lt;/strong&gt; account the change to the revocation in internet options is not working for them. In that case, you can perform the following changes for the SSRS service account:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;Modify the following setting in the registry:&lt;/p&gt;
&lt;p style="padding-left: 60px;"&gt;HKEY_USERS\&amp;lt;SID&amp;gt;\Software\Microsoft\Windows\CurrentVersion\WinTrust\TrustProviders\Software&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;Where the default value for State key is 0x00023c00&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;And you will need to change it to 0x00023e00&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;(More information in: &lt;a href="http://support.microsoft.com/kb/2715304"&gt;http://support.microsoft.com/kb/2715304&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In order to get the Windows SID for this user and be able to find out the previous registry key, please follow the below instructions.&amp;nbsp;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Download SPGETSID tool from &lt;a href="http://technet.microsoft.com/en-us/sysinternals/bb897417.aspx"&gt;http://technet.microsoft.com/en-us/sysinternals/bb897417.aspx&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Once it is installed and save to a local file, open a cmd window (with administrator privileges ) and navigate through the cmd to the folder where this spgetsid.exe is located.&lt;/li&gt;
&lt;li&gt;Then type the following command line:&amp;nbsp;&amp;nbsp;&amp;nbsp; spgetsid domain\user&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (where the domain\user is your SSRS service account)&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Once get the SID please go to the previous registry key for this user and apply the change.&lt;/li&gt;
&lt;/ol&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;S-1-5-20 is the SID for Network Service, and for other SIDs: &lt;a href="http://support.microsoft.com/kb/243330"&gt;http://support.microsoft.com/kb/243330&lt;/a&gt; &amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;SID: S-1-5-18&lt;/p&gt;
&lt;p&gt;Name: Local System&lt;/p&gt;
&lt;p&gt;Description: A service account that is used by the operating system.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SID: S-1-5-19&lt;/p&gt;
&lt;p&gt;Name: NT Authority&lt;/p&gt;
&lt;p&gt;Description: Local Service&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SID: S-1-5-20&lt;/p&gt;
&lt;p&gt;Name: NT Authority&lt;/p&gt;
&lt;p&gt;Description: Network Service&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #000000; font-size: small;"&gt;&lt;strong&gt;&lt;span style="font-family: 'Calibri','sans-serif'; mso-fareast-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-theme-font: minor-latin; mso-fareast-language: ES; mso-bidi-language: AR-SA;" lang="EN-US"&gt;Note: &lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family: 'Calibri','sans-serif'; mso-fareast-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-theme-font: minor-latin; mso-fareast-language: ES; mso-bidi-language: AR-SA;" lang="EN-US"&gt;Check workarronds in&amp;nbsp; &lt;/span&gt;&lt;span style="font-family: 'Calibri','sans-serif'; mso-fareast-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-theme-font: minor-latin; mso-fareast-language: ES; mso-bidi-language: AR-SA;" lang="EN-US"&gt;&lt;span style="font-family: Segoe UI;"&gt;&lt;a href="http://support.microsoft.com/kb/2745448"&gt;http://support.microsoft.com/kb/2745448&lt;/a&gt; too&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;Maria Esteban&lt;/strong&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;Reporting Services Support Engineer&lt;/strong&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10367701" width="1" height="1"&gt;</content><author><name>Maria Esteban</name><uri>http://blogs.msdn.com/mariae/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>The HTTP service located at http://MACHINE:32843/a49407bfb2c3432e9953dc831d8b0a0f/ReportingWebService.svc is too busy</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mariae/archive/2012/10/30/the-http-service-located-at-http-machine-32843-a49407bfb2c3432e9953dc831d8b0a0f-reportingwebservice-svc-is-too-busy.aspx" /><id>http://blogs.msdn.com/b/mariae/archive/2012/10/30/the-http-service-located-at-http-machine-32843-a49407bfb2c3432e9953dc831d8b0a0f-reportingwebservice-svc-is-too-busy.aspx</id><published>2012-10-30T18:05:42Z</published><updated>2012-10-30T18:05:42Z</updated><content type="html">&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Playing around with the SharePoint integration with the new Addin of Reporting Services 2012 I suddenly found myself with the following error while running a report that used to work perfectly before:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;b&gt;&lt;i&gt;Error&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;i&gt;The HTTP&lt;br /&gt;service located at http://MACHINE:32843/a49407bfb2c3432e9953dc831d8b0a0f/ReportingWebService.svc&lt;br /&gt;is too busy. &lt;/i&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;i&gt;The HTTP&lt;br /&gt;service located at http:// MACHINE:32843/a49407bfb2c3432e9953dc831d8b0a0f/ReportingWebService.svc&lt;br /&gt;is too busy. &lt;/i&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;i&gt;The remote&lt;br /&gt;server returned an error: (503) Server Unavailable.&amp;nbsp; &lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I know the password of my account had changed by after correcting it in the application pools in IIS and in Central Administration under managed accounts, the error persisted and I couldn&amp;rsquo;t get it to work again.&lt;/p&gt;
&lt;p&gt;I finally fixed it by re-provision the Reporting Services Service Application.&lt;/p&gt;
&lt;p&gt;I am sharing the steps I used in PowerShell:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;First of all you need to open the SharePoint Management Shell to be able to run cmdlets:&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="padding-left: 90px;"&gt;&amp;nbsp;(From) &lt;a href="http://msdn.microsoft.com/en-us/library/gg492249.aspx"&gt;http://msdn.microsoft.com/en-us/library/gg492249.aspx&lt;/a&gt;&lt;/p&gt;
&lt;ol style="padding-left: 90px;"&gt;
&lt;li&gt;Type the following command from the SharePoint 2010 Management Shell:&lt;/li&gt;
&lt;li&gt;Click the &lt;b&gt;Start &lt;/b&gt;button&lt;/li&gt;
&lt;li&gt;Click the &lt;b&gt;Microsoft SharePoint 2010 Products&lt;/b&gt; group&lt;/li&gt;
&lt;li&gt;Click the &lt;b&gt;SharePoint 2010 Management Shell&lt;/b&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;ol style="padding-left: 90px;"&gt;&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;These are the commands run in SharePoint Management Shell console:&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="padding-left: 90px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 90px;"&gt;1. To Get all&amp;nbsp;the Reporting Services service applications run the following command:&lt;/p&gt;
&lt;p style="padding-left: 120px;"&gt;&amp;nbsp;Get-SPRSServiceApplication&lt;/p&gt;
&lt;p style="padding-left: 120px;"&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp; &lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-95-32/0336.image1.png"&gt;&lt;img alt="" src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-00-95-32/0336.image1.png" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp; In my case, I only had one that corresponded to the ID of the error, although you could have several&lt;/p&gt;
&lt;p style="padding-left: 120px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 90px;"&gt;&amp;nbsp;2. Then run the two commands:&lt;/p&gt;
&lt;p style="padding-left: 90px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 120px;"&gt;$sts = Get-SPRSServiceApplication&lt;/p&gt;
&lt;p style="padding-left: 120px;"&gt;$sts.Provision()&lt;/p&gt;
&lt;p style="padding-left: 120px;"&gt;&lt;br /&gt; &lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-95-32/7183.image2.png"&gt;&lt;img alt="" src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-00-95-32/7183.image2.png" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p style="padding-left: 90px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 90px;"&gt;And the report started working again!!!&lt;/p&gt;
&lt;p style="padding-left: 90px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 90px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 90px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Maria Esteban&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Reporting Services Support Engineer&lt;/b&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10364153" width="1" height="1"&gt;</content><author><name>Maria Esteban</name><uri>http://blogs.msdn.com/mariae/ProfileUrlRedirect.ashx</uri></author><category term="Reporting Services" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Reporting+Services/" /><category term="Sharepoint" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Sharepoint/" /><category term="Powershell" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Powershell/" /></entry><entry><title>"Arithmetic operation resulted in an overflow" Error running a report that uses a connection data source to Oracle 10</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mariae/archive/2012/07/05/quot-arithmetic-operation-resulted-in-an-overflow-quot-error-running-a-report-that-uses-a-connection-data-source-to-oracle-10.aspx" /><id>http://blogs.msdn.com/b/mariae/archive/2012/07/05/quot-arithmetic-operation-resulted-in-an-overflow-quot-error-running-a-report-that-uses-a-connection-data-source-to-oracle-10.aspx</id><published>2012-07-05T12:36:08Z</published><updated>2012-07-05T12:36:08Z</updated><content type="html">&lt;p&gt;If you are using Reporting Services to create reports that connects to your Oracle 10 server, you might find yourself with the following error:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;em&gt;"Arithmetic operation resulted in an overflow"&lt;/em&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;em&gt;&lt;/em&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;The &lt;strong&gt;StackTrace&lt;/strong&gt; would be the following:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;em&gt;&lt;br /&gt;System.Data.Odbc.OdbcStatementHandle.RowCount(System.Data.Odbc.SQLLEN ByRef) &lt;br /&gt;System.Data.Odbc.OdbcDataReader.GetRowCount() &lt;br /&gt;System.Data.Odbc.OdbcDataReader.FirstResult() &lt;br /&gt;System.Data.Odbc.OdbcCommand.ExecuteReaderObject(System.Data.CommandBehavior,System.String, Boolean, System.Object[], SQL_API) &lt;br /&gt;System.Data.Odbc.OdbcCommand.ExecuteReaderObject(System.Data.CommandBehavior,System.String, Boolean)&amp;nbsp;&lt;br /&gt;System.Data.Odbc.OdbcCommand.ExecuteReader(System.Data.CommandBehavior) &lt;br /&gt;System.Data.Odbc.OdbcCommand.ExecuteDbDataReader(System.Data.CommandBehavior) &lt;br /&gt;System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior) &lt;br /&gt;Microsoft.ReportingServices.DataExtensions.CommandWrapper.ExecuteReader(Microsoft.ReportingServices.DataProcessing.CommandBehavior) &lt;br /&gt;Microsoft.ReportingServices.OnDemandProcessing.RuntimeDataSet.RunDataSetQuery() &lt;br /&gt;&lt;br /&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;After struggling to find the cause of this we found that it was caused by a bug in the Oracle ODBC driver.&amp;nbsp; It affects the versions: 10.2.0.4 to 11.2.0.1 of Oracle and only the 64 bit driver (not the 32 bit driver).&lt;br /&gt;This is why your 64 bit server might be affected but your 32 bit machine would not.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The&amp;nbsp;corresponding bug in Oracle that causes this behavior is:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;amp;type=BUG&amp;amp;id=9793452"&gt;Bug 9793452&lt;/a&gt; - EXECUTEREADER FAILS WITH OVERFLOW: SQLROWCOUNT RETURNS INCORRECT VALUE&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You would need to install the following Oracle patches&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;For 10.2.0.4.0, apply &lt;a href="https://support.oracle.com/CSP/ui/flash.html#tab=PatchHomePage(page=PatchHomePage&amp;amp;id=gj46o799()),(page=PatchSearchResultsHome&amp;amp;id=gj46pr1y(search=%3CSearch%3E%0A%20%20%3CFilter%20name=%22patch_number%22%20op=%22IS%22%20value=%2210084982%22%20type=%22patch_number%22/%3E%0A%20%20%3CFilter%20name=%22pla" target="_blank"&gt;Patch 10084982&lt;/a&gt; or later.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;For 10.2.0.5.0, apply &lt;a href="https://support.oracle.com/CSP/ui/flash.html#tab=PatchHomePage(page=PatchHomePage&amp;amp;id=gj46o799()),(page=PatchSearchResultsHome&amp;amp;id=gj46pr1y(search=%3CSearch%3E%0A%20%20%3CFilter%20name=%22patch_number%22%20op=%22IS%22%20value=%2210155844%22%20type=%22patch_number%22/%3E%0A%20%20%3CFilter%20name=%22pla" target="_blank"&gt;Patch 10155844&lt;/a&gt; or later.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;For 11.2.0.1.0, apply &lt;a href="https://support.oracle.com/CSP/ui/flash.html#tab=PatchHomePage(page=PatchHomePage&amp;amp;id=gj46o799()),(page=PatchSearchResultsHome&amp;amp;id=gj46pr1y(search=%3CSearch%3E%0A%20%20%3CFilter%20name=%22patch_number%22%20op=%22IS%22%20value=%229966926%22%20type=%22patch_number%22/%3E%0A%20%20%3CFilter%20name=%22plat" target="_blank"&gt;Patch 9966926&lt;/a&gt; or later.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Fixed also in 11.2.0.2.0 &lt;a href="https://support.oracle.com/CSP/ui/flash.html#tab=PatchHomePage(page=PatchHomePage&amp;amp;id=gj46o799()),(page=PatchSearchResultsHome&amp;amp;id=gj46pr1y(search=%3CSearch%3E%0A%20%20%3CFilter%20name=%22patch_number%22%20op=%22IS%22%20value=%2210098816%22%20type=%22patch_number%22/%3E%0A%20%20%3CFilter%20name=%22pla" target="_blank"&gt;Patch 10098816&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;/b&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;References&lt;/b&gt; &lt;span style="text-decoration: underline;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;amp;type=BUG&amp;amp;id=9793452"&gt;BUG:9793452&lt;/a&gt; - EXECUTEREADER FAILS WITH OVERFLOW: SQLROWCOUNT RETURNS INCORRECT VALUE&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;More generic information about hte bug:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;Retrieving data using a .NET ODBC application may fail with: 'Arithmetic operation resulted in an overflow'. This can occur with a call to ExecuteReader on the OdbcCommand object, the fill method of the OdbcDataAdaptor object and others.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Maria Esteban&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Reporting Services Support Engineer&lt;/b&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10327131" width="1" height="1"&gt;</content><author><name>Maria Esteban</name><uri>http://blogs.msdn.com/mariae/ProfileUrlRedirect.ashx</uri></author><category term="Oracle" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Oracle/" /></entry><entry><title>How can I check the version of the Add-In of Reporting Services for SharePoint I have installed?</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mariae/archive/2012/06/13/how-can-i-check-the-version-of-the-add-in-of-reporting-services-for-sharepoint-i-have-installed.aspx" /><id>http://blogs.msdn.com/b/mariae/archive/2012/06/13/how-can-i-check-the-version-of-the-add-in-of-reporting-services-for-sharepoint-i-have-installed.aspx</id><published>2012-06-13T10:11:01Z</published><updated>2012-06-13T10:11:01Z</updated><content type="html">&lt;p&gt;Where is my Add-in of Reporting Services&amp;nbsp;for&amp;nbsp;SharePoint? I need to find out which version I installed.&amp;nbsp;Did I install the riht version or the Service Pack?&lt;/p&gt;
&lt;p&gt;You can check this in a very easily in the installed programs list:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Open:&lt;br /&gt;Control Panel / Programs And Features&lt;/li&gt;
&lt;li&gt;Select&lt;br /&gt;&amp;ldquo;Microsoft SQL Server 2012 RS Add in for SharePoint&amp;rdquo;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;You can see the version at the bottom. See bitmap below:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-95-32/7853.pic.png"&gt;&lt;img border="0" alt="" src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-00-95-32/7853.pic.png" width="754" height="187" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Maria Esteban&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Reporting Services Support Engineer&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10319258" width="1" height="1"&gt;</content><author><name>Maria Esteban</name><uri>http://blogs.msdn.com/mariae/ProfileUrlRedirect.ashx</uri></author><category term="Sharepoint" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Sharepoint/" /><category term="Add-In" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Add_2D00_In/" /></entry><entry><title>Reporting Services 2012 Inter-Version Supportability</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mariae/archive/2012/04/25/reporting-services-2012-inter-version-supportability.aspx" /><id>http://blogs.msdn.com/b/mariae/archive/2012/04/25/reporting-services-2012-inter-version-supportability.aspx</id><published>2012-04-25T16:05:00Z</published><updated>2012-04-25T16:05:00Z</updated><content type="html">&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Do you want to install/upgrade to the new version of Reporting Services 2012?&lt;/p&gt;
&lt;p&gt;You can see below the different combinations that are compatible with this new version concerning databases, BIDS, Report Viewer, SharePoint and PowerPivot.&lt;/p&gt;
&lt;p&gt;It&amp;nbsp;is mostly compatible with prior versions, incompatibilities revolve around loss of support for SQL Server 2000, BIDS 2000 and Report Builder 1.0&lt;/p&gt;
&lt;h3&gt;&lt;span style="text-decoration: underline;"&gt;RS databases, BIDS &amp;amp; Report Viewer&lt;/span&gt;&lt;/h3&gt;
&lt;table style="width: 94%;" class="LessonTableNoHeaderRow" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top" width="372"&gt;
&lt;p class="TableText"&gt;Create&lt;br /&gt;&amp;nbsp; ReportServer database on SQL 2000&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="159"&gt;
&lt;p class="TableText"&gt;Not&lt;br /&gt;&amp;nbsp; supported&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="372"&gt;
&lt;p class="TableText"&gt;Create&lt;br /&gt;&amp;nbsp; ReportServer database on SQL 2005 and later&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="159"&gt;
&lt;p class="TableText"&gt;Supported&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="372"&gt;
&lt;p class="TableText"&gt;Upgrade&lt;br /&gt;&amp;nbsp; ReportServer 2000 database on SQL 2000&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="159"&gt;
&lt;p class="TableText"&gt;Not&lt;br /&gt;&amp;nbsp; supported&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="372"&gt;
&lt;p class="TableText"&gt;Upgrade&lt;br /&gt;&amp;nbsp; ReportServer 2000 database on SQL 2005&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="159"&gt;
&lt;p class="TableText"&gt;Supported&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="372"&gt;
&lt;p class="TableText"&gt;Upgrade&lt;br /&gt;&amp;nbsp; ReportServer 2005 and later database on SQL 2005 and later&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="159"&gt;
&lt;p class="TableText"&gt;Supported&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="372"&gt;
&lt;p class="TableText"&gt;Deploy&lt;br /&gt;&amp;nbsp; from BIDS 2000 to Reporting Services 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="159"&gt;
&lt;p class="TableText"&gt;Unsupported&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="372"&gt;
&lt;p class="TableText"&gt;Deploy&lt;br /&gt;&amp;nbsp; from BIDS 2005 and later to Reporting Services 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="159"&gt;
&lt;p class="TableText"&gt;Supported&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="372"&gt;
&lt;p class="TableText"&gt;Deploy&lt;br /&gt;&amp;nbsp; Report Model projects to Reporting Services 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="159"&gt;
&lt;p class="TableText"&gt;Not&lt;br /&gt;&amp;nbsp; supported&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="372"&gt;
&lt;p class="TableText"&gt;Upgrade&lt;br /&gt;&amp;nbsp; BIDS 2000 and later projects in BIDS 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="159"&gt;
&lt;p class="TableText"&gt;Supported&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="372"&gt;
&lt;p class="TableText"&gt;Upgrade&lt;br /&gt;&amp;nbsp; Report Model Projects in BIDS 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="159"&gt;
&lt;p class="TableText"&gt;Not&lt;br /&gt;&amp;nbsp; supported&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="372"&gt;
&lt;p class="TableText"&gt;Use&lt;br /&gt;&amp;nbsp; ReportViewer 8.0 and later against Reporting Services 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="159"&gt;
&lt;p class="TableText"&gt;Supported&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="372"&gt;
&lt;p class="TableText"&gt;Use&lt;br /&gt;&amp;nbsp; ReportViewer 11.0 against Reporting Services 2000 or 2005&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="159"&gt;
&lt;p class="TableText"&gt;Not&lt;br /&gt;&amp;nbsp; supported&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="372"&gt;
&lt;p class="TableText"&gt;Use&lt;br /&gt;&amp;nbsp; ReportViewer 11.0 against Reporting Services 2008 and later&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="159"&gt;
&lt;p class="TableText"&gt;Supported&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;Reporting Services, SharePoint &amp;amp; Add-in, Data Alert and Power View reporting features&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;table style="width: 94%;" class="LessonTable" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;td valign="top" width="212"&gt;&amp;nbsp;&amp;nbsp;
&lt;p class="TableText"&gt;&lt;b&gt;SharePoint&lt;br /&gt;&amp;nbsp;&amp;nbsp; Version&lt;/b&gt;&lt;/p&gt;
&amp;nbsp;&amp;nbsp;&lt;/td&gt;
&amp;nbsp;&amp;nbsp;
&lt;td valign="top" width="108"&gt;&amp;nbsp;&amp;nbsp;
&lt;p class="TableText"&gt;&lt;b&gt;Report Server&lt;br /&gt;&amp;nbsp;&amp;nbsp; Add-in&lt;/b&gt;&lt;/p&gt;
&amp;nbsp;&amp;nbsp;&lt;/td&gt;
&amp;nbsp;&amp;nbsp;
&lt;td valign="top" width="157"&gt;&amp;nbsp;&amp;nbsp;
&lt;p class="TableText"&gt;&lt;b&gt;Report Server&lt;br /&gt;&amp;nbsp;&amp;nbsp; Back-end&lt;/b&gt;&lt;/p&gt;
&amp;nbsp;&amp;nbsp;&lt;/td&gt;
&amp;nbsp;&amp;nbsp;
&lt;td valign="top" width="120"&gt;&amp;nbsp;&amp;nbsp;
&lt;p class="TableText"&gt;&lt;b&gt;Power View and&lt;br /&gt;&amp;nbsp;&amp;nbsp; Alerting Available&lt;/b&gt;&lt;/p&gt;
&amp;nbsp;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top" width="212"&gt;
&lt;p class="TableText"&gt;Windows&lt;br /&gt;&amp;nbsp; SharePoint Services 3.0&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p class="TableText"&gt;2005&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="157"&gt;
&lt;p class="TableText"&gt;2005&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="212"&gt;
&lt;p class="TableText"&gt;Microsoft&lt;br /&gt;&amp;nbsp; Office SharePoint Services 2007&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p class="TableText"&gt;2005&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="157"&gt;
&lt;p class="TableText"&gt;2005&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="212"&gt;
&lt;p class="TableText"&gt;Windows&lt;br /&gt;&amp;nbsp; SharePoint Services 3.0&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p class="TableText"&gt;2008&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="157"&gt;
&lt;p class="TableText"&gt;2008&lt;br /&gt;&amp;nbsp; or 2008 R2&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="212"&gt;
&lt;p class="TableText"&gt;Microsoft&lt;br /&gt;&amp;nbsp; Office SharePoint Services 2007&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p class="TableText"&gt;2008&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="157"&gt;
&lt;p class="TableText"&gt;2008&lt;br /&gt;&amp;nbsp; or 2008 R2&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="212"&gt;
&lt;p class="TableText"&gt;SharePoint&lt;br /&gt;&amp;nbsp; Foundation 2010&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p class="TableText"&gt;2008&lt;br /&gt;&amp;nbsp; R2 or 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="157"&gt;
&lt;p class="TableText"&gt;2008&lt;br /&gt;&amp;nbsp; SP2 or 2008 R2&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="212"&gt;
&lt;p class="TableText"&gt;SharePoint&lt;br /&gt;&amp;nbsp; Foundation 2010&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p class="TableText"&gt;2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="157"&gt;
&lt;p class="TableText"&gt;2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="212"&gt;
&lt;p class="TableText"&gt;SharePoint&lt;br /&gt;&amp;nbsp; Server 2010 Standard Edition&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p class="TableText"&gt;2008&lt;br /&gt;&amp;nbsp; R2 or 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="157"&gt;
&lt;p class="TableText"&gt;2008&lt;br /&gt;&amp;nbsp; SP2 or 2008 R2&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="212"&gt;
&lt;p class="TableText"&gt;SharePoint&lt;br /&gt;&amp;nbsp; Server 2010 Standard Edition&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p class="TableText"&gt;2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="157"&gt;
&lt;p class="TableText"&gt;2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="212"&gt;
&lt;p class="TableText"&gt;SharePoint&lt;br /&gt;&amp;nbsp; Server 2010 Enterprise Edition&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p class="TableText"&gt;2008&lt;br /&gt;&amp;nbsp; R2 or 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="157"&gt;
&lt;p class="TableText"&gt;2008&lt;br /&gt;&amp;nbsp; SP2 or 2008 R2&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="212"&gt;
&lt;p class="TableText"&gt;SharePoint&lt;br /&gt;&amp;nbsp; Server 2010 Enterprise Edition&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="108"&gt;
&lt;p class="TableText"&gt;2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="157"&gt;
&lt;p class="TableText"&gt;2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;Yes &lt;sup&gt;1&lt;/sup&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;SharePoint, databases, PowerPivot&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;table style="width: 94%;" class="LessonTable" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;td valign="top" width="364"&gt;&amp;nbsp;&amp;nbsp;
&lt;p class="TableText"&gt;&lt;b&gt;SharePoint&lt;br /&gt;&amp;nbsp;&amp;nbsp; Version&lt;/b&gt;&lt;/p&gt;
&amp;nbsp;&amp;nbsp;&lt;/td&gt;
&amp;nbsp;&amp;nbsp;
&lt;td valign="top" width="113"&gt;&amp;nbsp;&amp;nbsp;
&lt;p class="TableText"&gt;&lt;b&gt;SQL 2012Catalog&lt;/b&gt;&lt;/p&gt;
&amp;nbsp;&amp;nbsp;&lt;/td&gt;
&amp;nbsp;&amp;nbsp;
&lt;td valign="top" width="120"&gt;&amp;nbsp;&amp;nbsp;
&lt;p class="TableText"&gt;&lt;b&gt;PowerPivot&lt;/b&gt;&lt;/p&gt;
&amp;nbsp;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top" width="364"&gt;
&lt;p class="TableText"&gt;SharePoint&lt;br /&gt;&amp;nbsp; Foundation 2010&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="113"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="364"&gt;
&lt;p class="TableText"&gt;SharePoint&lt;br /&gt;&amp;nbsp; Server 2010 Standard Edition&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="113"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="364"&gt;
&lt;p class="TableText"&gt;SharePoint&lt;br /&gt;&amp;nbsp; Server 2010 Enterprise Edition&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="113"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="364"&gt;
&lt;p class="TableText"&gt;SharePoint&lt;br /&gt;&amp;nbsp; Foundation 2010 Service Pack 1&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="113"&gt;
&lt;p class="TableText"&gt;Yes &lt;sup&gt;2&lt;/sup&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="364"&gt;
&lt;p class="TableText"&gt;SharePoint&lt;br /&gt;&amp;nbsp; Server 2010 Standard Edition Service Pack 1&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="113"&gt;
&lt;p class="TableText"&gt;Yes &lt;sup&gt;2&lt;/sup&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;No&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="364"&gt;
&lt;p class="TableText"&gt;SharePoint&lt;br /&gt;&amp;nbsp; Server 2010 Enterprise Edition Service Pack 1&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="113"&gt;
&lt;p class="TableText"&gt;Yes &lt;sup&gt;2&lt;/sup&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="120"&gt;
&lt;p class="TableText"&gt;Yes &lt;sup&gt;3&lt;/sup&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;table style="width: 98%;" class="NotesTable" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top" width="17%" nowrap="nowrap"&gt;
&lt;p class="NotesCourseLabel"&gt;Note:&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="83%"&gt;&lt;ol&gt;
&lt;li&gt;&lt;br /&gt;&amp;nbsp; Power View and Data Alerts require the&amp;nbsp;new Business Intelligence Edition or the Enterprise Edition of both SQL&amp;nbsp;Server Reporting Services and SharePoint Server 2010. These features are also&amp;nbsp;available, for testing purposes, in Developer and Evaluation editions.&lt;/li&gt;
&lt;li&gt;&lt;br /&gt;&amp;nbsp; If you want to use PowerPivot 2012and/or&amp;nbsp;SQL Server 2012 for the SharePoint Catalog database, then you must install Service Pack 1 for SharePoint 2010. These features do not work with the RTM version&amp;nbsp;of SharePoint 2010.&lt;/li&gt;
&lt;li&gt;&lt;br /&gt;&amp;nbsp; PowerPivot only comes with the&amp;nbsp;Enterprise Edition of SQL Server and requires the Enterprise Edition of&lt;br /&gt;&amp;nbsp; SharePoint Server 2010 (SP1).&lt;/li&gt;
&lt;/ol&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;table style="width: 98%;" class="NotesTable" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top" width="17%" nowrap="nowrap"&gt;
&lt;p class="NotesCourseLabel"&gt;Note:&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="83%"&gt;
&lt;p class="NotesCourse"&gt;&amp;nbsp;&amp;nbsp; The&amp;nbsp;BI Edition contains all the Enterprise features of Reporting Services and&amp;nbsp;Analysis Services, including Data-driven Subscriptions, Data Alerts, Power&lt;br /&gt;&amp;nbsp;&amp;nbsp; View, and PowerPivot. It comes with the Standard Edition equivalent of the SQL Server database engine, though.&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10297669" width="1" height="1"&gt;</content><author><name>Maria Esteban</name><uri>http://blogs.msdn.com/mariae/ProfileUrlRedirect.ashx</uri></author><category term="Reporting Services" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Reporting+Services/" /><category term="2012" scheme="http://blogs.msdn.com/b/mariae/archive/tags/2012/" /></entry><entry><title>Improving performance of reports (for Reporting Services 2008 &amp; 2008 R2) integrated with SharePoint 2010 by using the SQL Server 2012 Add-in</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mariae/archive/2012/04/23/improving-performance-of-reports-for-reporting-services-2008-amp-2008-r2-integrated-with-sharepoint-2010-by-using-the-sql-server-2012-add-in.aspx" /><id>http://blogs.msdn.com/b/mariae/archive/2012/04/23/improving-performance-of-reports-for-reporting-services-2008-amp-2008-r2-integrated-with-sharepoint-2010-by-using-the-sql-server-2012-add-in.aspx</id><published>2012-04-23T16:18:08Z</published><updated>2012-04-23T16:18:08Z</updated><content type="html">&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I discovered short time ago a simple way to improve performance of certain Reports (RS 2008 &amp;amp; 2008 R2) running in integration with SharePoint 2010.&lt;/p&gt;
&lt;p&gt;Imagine the following scenario:&lt;/p&gt;
&lt;p&gt;You are using SQL Server Add-in 2008 or 2008 R2 to integrate Reporting Services with SharePoint 2010. You observe that there is a Big different on the time shown in the execution of the report in the ExecutionLog and the real time the report takes from SharePoint.&lt;/p&gt;
&lt;p&gt;In the following link you can see the supported combinations of SharePoint and Reporting Services Components:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;b&gt;Supported Combinations of SharePoint and Reporting Services Components&lt;/b&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/gg492257.aspx"&gt;http://msdn.microsoft.com/en-us/library/gg492257.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You can observe that:&lt;/p&gt;
&lt;table style="width: 100%;" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top"&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;&lt;strong&gt;&lt;span style="color: #000000; background-color: #ffffff;"&gt;Report server&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top"&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;&lt;strong&gt;&lt;span style="color: #000000; background-color: #ffffff;"&gt;Add-in&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top"&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;&lt;strong&gt;&lt;span style="color: #000000; background-color: #ffffff;"&gt;SharePoint version&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top"&gt;
&lt;p&gt;SQL Server 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top"&gt;
&lt;p&gt;SQL Server 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top"&gt;
&lt;p&gt;SharePoint 2010&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top"&gt;
&lt;p&gt;SQL Server 2008 R2&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top"&gt;
&lt;p&gt;SQL Server 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top"&gt;
&lt;p&gt;SharePoint 2010&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top"&gt;
&lt;p&gt;SQL Server 2008&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top"&gt;
&lt;p&gt;SQL Server 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top"&gt;
&lt;p&gt;SharePoint 2010&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;SQL Server 2012 Add-in can be used for the versions RS Server 2008 and&amp;nbsp;RS&amp;nbsp;2008 R2 as well as for&amp;nbsp;RS 2012 when integrating with SharePoint 2010.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I suggest you to try using the SQL Server 2012 Reporting Services Add-in for SharePoint 2010 as it includes several improvements and it is compatible with RS 2008 and 2008 R2. You might get surprised and see that some reports might speed up. (Needles to say, always using a test environment first).&lt;/p&gt;
&lt;p&gt;You can download it from:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;b&gt;Microsoft&amp;reg; SQL Server&amp;reg; 2012&lt;br /&gt;Reporting Services Add-in for Microsoft&amp;reg; SharePoint&amp;reg; Technologies 2010&lt;/b&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;a href="http://www.microsoft.com/download/en/details.aspx?id=29068"&gt;http://www.microsoft.com/download/en/details.aspx?id=29068&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Maria Esteban&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Reporting Services Support Engineer&lt;/b&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10296624" width="1" height="1"&gt;</content><author><name>Maria Esteban</name><uri>http://blogs.msdn.com/mariae/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>ERROR: Execution '&lt;ID&gt;' cannot be found (rsExecutionNotFound)</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mariae/archive/2012/03/21/error-execution-lt-id-gt-cannot-be-found-rsexecutionnotfound.aspx" /><id>http://blogs.msdn.com/b/mariae/archive/2012/03/21/error-execution-lt-id-gt-cannot-be-found-rsexecutionnotfound.aspx</id><published>2012-03-21T09:53:00Z</published><updated>2012-03-21T09:53:00Z</updated><content type="html">&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I would like to share with you usefull information to troubleshoot the following error in Reporting Serices native or integrated with SharePoint mode, in case you find it in your environment. Sometimes, the error can be random, and sometimes, caused by the use of an NLB.&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;Execution '&amp;lt;ID&amp;gt;' cannot be found (rsExecutionNotFound)&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;span style="text-decoration: underline;"&gt;TROUBLESHOOTING:&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;1. First of all, check&amp;nbsp;the following article, in case you have&amp;nbsp;Exchange 2007 installed and it is causing it:&lt;/p&gt;
&lt;p style="padding-left: 60px;"&gt;&lt;b&gt;Error message when you view a report from Report Manager, ReportViewer, or a SharePoint site: "Execution '&amp;lt;SessionID&amp;gt;' cannot be found (rsExecutionNotFound)"&lt;/b&gt;&lt;/p&gt;
&lt;p style="padding-left: 60px;"&gt;&lt;a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;972328"&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;972328&lt;/a&gt;&lt;/p&gt;
&lt;p style="padding-left: 60px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;2. The cause of this error could be&amp;nbsp;that the credentials of the user do not get correctly impersonated across to Reporting Services for one of the web method calls. This causes the stored procedure 'GetSessionData' to return no data since the user account that created the session is not the one being passed in.&amp;nbsp;&lt;br /&gt; &lt;br /&gt;This may occur on 64bit systems. And it reproduces when the account that runs the report is the not the same as the application pool identity. &lt;br /&gt;Try changing the following stored procedure: 'GetSessionData' like this:&lt;/p&gt;
&lt;ol&gt;&lt;/ol&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;span style="color: #008000;"&gt;--***** BEGIN&lt;/span&gt;&lt;br /&gt;&lt;span style="color: #008000;"&gt;UNSUPPORTED WORKAROUND *****&lt;/span&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;IF (@OwnerName&lt;br /&gt;= 'NT&lt;br /&gt;AUHTORITY\NETWORKSERVICE') BEGIN&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;SELECT&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;@OwnerID = SE.OwnerID&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;FROM&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;[ReportServerTempDB].dbo.SessionData AS SE WITH (XLOCK)&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;WHERE&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;SE.SessionID&lt;br /&gt;= @SessionID&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;END ELSE BEGIN&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;EXEC&lt;br /&gt;GetUserID @OwnerSid,&lt;br /&gt;@OwnerName, @AuthType,&lt;br /&gt;@OwnerID OUTPUT&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;END&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;span style="color: #008000;"&gt;--***** END&lt;/span&gt;&lt;br /&gt;&lt;span style="color: #008000;"&gt;UNSUPPORTED WORKAROUND *****&lt;/span&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;span style="color: #008000;"&gt;-- Previous&lt;/span&gt;&lt;br /&gt;&lt;span style="color: #008000;"&gt;value for this section&lt;/span&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;span style="color: #008000;"&gt;-- EXEC&lt;/span&gt;&lt;br /&gt;&lt;span style="color: #008000;"&gt;GetUserID @OwnerSid, @OwnerName, @AuthType, @OwnerID OUTPUT&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;And see if the problem disappears.&lt;/p&gt;
&lt;p&gt;If the problem doesn&amp;rsquo;t disappears, revert back the changes&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;3.&amp;nbsp;If&amp;nbsp;Reporting Services is installed in an NLB. Check if the configuration of the Network load Balancer and the Session affinity of the load balancer are correct. See below:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;b&gt;How to: Configure a Report Server on a Network Load Balancing Cluster&lt;/b&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;a href="http://technet.microsoft.com/en-us/library/cc281307(v=sql.100).aspx"&gt;http://technet.microsoft.com/en-us/library/cc281307(v=sql.100).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;4. Chacek the configuration of the&amp;nbsp;&amp;lt;machinekey&amp;gt; tag in the configuration files of the load balancer as explained in the following article:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;b&gt;Configure a Report Server on a Network Load Balancing Cluster &lt;/b&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;a href="http://msdn.microsoft.com/en-us/library/cc281307(v=SQL.100).aspx#ViewState"&gt;http://msdn.microsoft.com/en-us/library/cc281307(v=SQL.100).aspx#ViewState&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;em&gt;&lt;b&gt;How to Configure View State Validation&lt;/b&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;em&gt;---------------------------------------------------------&amp;nbsp;&lt;/em&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;em&gt;To run a scale-out deployment on an NLB cluster, you must configure view state validation so that users can view interactive HTML reports. You must do this for the report server and for Report Manager.&lt;/em&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;em&gt;View state validation is controlled by the ASP.NET.&lt;/em&gt;&lt;br /&gt;&lt;em&gt;By default, view state validation is enabled and uses the identity of the Web service to perform the validation. However, in an NLB cluster scenario, there are multiple service instances and web service identities that run on different computers. Because the service identity varies for each node, you cannot rely on a single process identity to perform the validation.&lt;/em&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;em&gt;To work around this issue, you can generate an arbitrary validation key to support view state validation, and then manually configure each report server node to use the same key. You can use any randomly generated hexadecimal sequence. The validation algorithm (such as SHA1) determines how long the hexadecimal sequence must be.&lt;/em&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;Generate a validation key and decryption key by using the autogenerate functionality provided by the .NET Framework.&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;You can also use this tool to generate validation key: &lt;a href="http://aspnetresources.com/tools/machineKey"&gt;http://aspnetresources.com/tools/machineKey&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;5. Configure session affinity in the DNS of the load balancer:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;If you are using a sticky load balancer for the web farm, this requirement is not necessary. When the user connects to&amp;nbsp;the balancer, it ensures that the user is always redirected to the same server during the same session. In other words, "sticky session" (or also called "session affinity") leads to that the user should be allocated to a particular server and that of its data is stored on the same server for the duration of its session.&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;On the following&lt;br /&gt;link you have more information on what you meant by the term "sticky"&lt;br /&gt;under the section "persistence"&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;(&lt;a href="http://en.wikipedia.org/wiki/Load_balancing_(computing)"&gt;http://en.wikipedia.org/wiki/Load_balancing_(computing)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;6. Check that the value of the property &lt;b&gt;EnableAuthPersistance &lt;/b&gt;from the RSReportServer.config file is set to&amp;nbsp;False&lt;/p&gt;
&lt;p&gt;Additional information about this property:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;RSReportServer Configuration File&lt;/strong&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/ms157273.aspx"&gt;http://msdn.microsoft.com/en-us/library/ms157273.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;&lt;i&gt;&lt;/i&gt;&lt;/strong&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;&lt;i&gt;EnableAuthPersistance&lt;/i&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;i&gt;Determines whether authentication is performed on the connection or for every request.&lt;/i&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;i&gt;Valid values are True (default) or False. If set to True, subsequent requests from the same connection assume the impersonation context of the first request.&lt;/i&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;i&gt;This value must be set to False if you are using proxy server software (such as ISA Server) to access the report server. Using a proxy server allows a single connection from the proxy server to be used by multiple users. For this scenario, you should disable authentication persistence so that each user request can be authenticated separately. If you do not set EnableAuthPersistance to False, all users will connect using the impersonation context of the first request.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;7. If you are using Reporting Services 2005,&amp;nbsp;install&amp;nbsp;&amp;nbsp;Service Pack 4&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;b&gt;Microsoft SQL Server 2005 Service Pack 4 RTM &lt;/b&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;a href="http://www.microsoft.com/download/en/details.aspx?id=7218"&gt;http://www.microsoft.com/download/en/details.aspx?id=7218&lt;/a&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I hope this helps,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Maria Esteban&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Reporting Services Support Engineer&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;/b&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10285839" width="1" height="1"&gt;</content><author><name>Maria Esteban</name><uri>http://blogs.msdn.com/mariae/ProfileUrlRedirect.ashx</uri></author><category term="Reporting Services" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Reporting+Services/" /><category term="Sharepoint" scheme="http://blogs.msdn.com/b/mariae/archive/tags/Sharepoint/" /></entry></feed>