SQL Server Setup Help | |
How to: Enable Remote Errors (Reporting Services Configuration) | |
See Also |
Configuring SQL Server 2008 > Configuring Reporting Services > Reporting Services Configuration How-to Topics > |
You can set server properties on a report server to return additional information about error conditions that occur on remote servers. If an error message contains the text "For more information about this error, navigate to the report server on the local server machine, or enable remote errors", you can set the EnableRemoteErrors property to access additional information that can help you troubleshoot the problem.
Note: |
---|
You can edit the ConfigurationInfo table in the report server database to set EnableRemoteErrors to True, but if the report server is actively used, you should use SQL Server Management Studio or script to modify the settings. |
Enable remote errors through SQL Server Management Studio
-
Start Management Studio and connect to a report server instance.
-
Right-click the report server node, and select Properties.
-
Click Advanced to open the properties page.
-
In EnableRemoteErrors, select True.
-
Click OK.
Enable remote errors through script
-
Create a text file and copy the following script into the file.
Copy Code Public Sub Main() Dim P As New [Property]() P.Name = "EnableRemoteErrors" P.Value = True Dim Properties(0) As [Property] Properties(0) = P Try rs.SetSystemProperties(Properties) Console.WriteLine("Remote errors enabled.") Catch SE As SoapException Console.WriteLine(SE.Detail.OuterXml) End Try End Sub
-
Save the file as EnableRemoteErrors.rss.
-
Click Start, point to Run, type cmd, and click OK to open a command prompt window.
-
Navigate to the directory that contains the .rss file you just created.
-
Type the following command line, replacing servername with the actual name of your server:
Copy Code rs -i EnableRemoteErrors.rss -s http://servername/ReportServer
See Also
Other Resources
Report Server System PropertiesHow to: Connect to a Report Server in Management Studio
Report Server System Properties
Server Properties (Advanced Page) - Reporting Services