Wednesday, February 15, 2012

Enable remote errors on SSRS



Query:


I am getting some errors when viewing SSRS reports on client machines but i can not see the full error because it is asking me to enable remote errors on ssrs. How can i do that on ssrs 2005.

Answer:
The setting is stored in the table named 'ConfigurationInfo ' on the report server. Just open the table and set Enable Remote Errors to true.

3 comments:

  1. Or simply run this query:

    -- Make sure this is your report server db
    Use ReportServer
    update ConfigurationInfo set Value = 'True' where Name = 'EnableRemoteErrors'
    Go

    ReplyDelete
  2. With the release of Microsoft outlook 2010 download, you get a richer set of experiences to meet your communication needs at work, home, and school. Enjoy the freedom of using Office Standard 2010 from more locations on more devices.

    ReplyDelete
  3. I was just wondering why the default is not enabled? Is there some reason for not enabling this on all report servers?

    ReplyDelete