Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
roy mm
Yak Posting Veteran
62 Posts |
Posted - 2007-02-06 : 04:31:18
|
Hello,I got the error:______________________Reporting Services Error * For more information about this error navigate to the reportserver on the local server machine, or enable remote errors SQL ServerReporting Services______________________I saw the answer:"You could set the "EnableRemoteErrors" configuration value to True inthe ReportServer.ConfigurationInfo database table."How can I get to the ReportServer.ConfigurationInfo database table?I am on the reportservice server and I run "reporting servicesconfiguration manager" and the "sql server managment". I didn't sawthat option :(Where is this configuration?Any help?Thanks |
|
jhermiz
3564 Posts |
Posted - 2007-02-07 : 12:05:12
|
quote: Originally posted by roy mm Hello,I got the error:______________________Reporting Services Error * For more information about this error navigate to the reportserver on the local server machine, or enable remote errors SQL ServerReporting Services______________________I saw the answer:"You could set the "EnableRemoteErrors" configuration value to True inthe ReportServer.ConfigurationInfo database table."How can I get to the ReportServer.ConfigurationInfo database table?I am on the reportservice server and I run "reporting servicesconfiguration manager" and the "sql server managment". I didn't sawthat option :(Where is this configuration?Any help?Thanks
ConfigurationInfo is an actual table in the reporting services server (the actual ReportServer database on your SQL Server 2k/2k5 box). You need to issue an update command to set this option. It is very simple:UPDATE ConfigurationInfo SET Value = 'True' WHERE Name='EnableRemoteErrors' Take a look at a helpful article I wrote about the Power of the ReportServer here:http://jhermiz.googlepages.com/powerofreportserver Keeping the web experience alive -- [url]http://www.web-impulse.com[/url]RS Blog -- [url]http://weblogs.sqlteam.com/jhermiz[/url] |
 |
|
|
|
|