"Enable remote error" in SSRS

  1. Connect to the database engine in SSMS and navigate to the ReportServer database.

  2. Query the ConfigurationInfo table to get familiar with it. Issue the following query:

    USE ReportServer

    GO

    UPDATE ConfigurationInfo SET Value = 'True' WHERE Name = 'EnableRemoteErrors'

  3. Restart Reporting Services on the server: Click Start > Administrative Tools > Services to open the Services management console. Right-click the SQL Server Reporting Services ([InstanceName]) service, and then click Restart.


Follow below procedure to enable remote error in SSRS

1) Open SQL Server Management studio and log in with reporting services as the service type.

enter image description here

2) right click on the instance and go to properties so here attach an image as the popup is shown after goto Advanced tab here you can find EnableRemoteError in Security tree.

enter image description here

After enabling remote error you can figure out actual error thrown by the database.

I hope this will help.