# MsSQL - SQL Reporting Services

### Enable Errors

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:
    
    ```mssql
    USE ReportServer
    GO
    UPDATE ConfigurationInfo SET Value = 'True' WHERE Name = 'EnableRemoteErrors'
    ```
3. Restart Reporting Services on the server: Click Start &gt; Administrative Tools &gt; Services to open the Services management console. Right-click the SQL Server Reporting Services (\[InstanceName\]) service, and then click Restart.