zoukankan      html  css  js  c++  java
  • Enabling Remote Errors in SSRS

    January 18, 2011

    By default the remote errors property in SQL Server Reporting Services is set to false, which means error messages in a multi-server environment aren't very detailed.  By enabling remote errors, you will get additional error information returned which is more useful than this:

    For more information about this error, navigate to the report server on the local server machine, or enable remote errors.

    Option 1 to Enable Remote Errors - DB Engine

    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'

    Option 2 to Enable Remote Errors - Report Server

    This option applies to SQL Server 2008 and newer.

    1.  Connect to Reporting Services in SSMS.

    2.  Right-click on the server node and go to Properties.

    3.  On the Advanced page, set the EnableRemoteErrors property to True. 

     

    Option 3 to Enable Remote Errors - Script

    This Technet article also describes how to enable remote errors using a script, if you'd prefer to handle it using a RSS (Reporting Services Script), which is executed using the RS utility.

  • 相关阅读:
    javascript之理解参数按值传递
    javascript之模仿jQuery实现框架雏形
    javascript之正则表达式学习笔记
    python常用算法了解
    爬虫_小结04
    爬虫_小结03
    爬虫_小结02
    爬虫_小结01
    IO 模型
    数据库,前端和框架须知
  • 原文地址:https://www.cnblogs.com/hqbird/p/4527208.html
Copyright © 2011-2022 走看看