[SSRS] How to get detail error message by table :ExecutionLogStorage

ShaoYu Hung(洪紹渝) 20 Reputation points
2023-02-07T09:30:23.36+00:00

I execute SQL without error message detail , only Status rsProcessingAborted
:

  SELECT B.Path ,a.*
  FROM [ReportServer].[dbo].[ExecutionLogStorage] A,[ReportServer].[dbo].[Catalog] B
  WHERE A.REPORTID=B.ItemID AND B.Path  ='Reportpath' ORDER BY A.TimeStart DESC ;

User's image

How to get error message from ssrs table? Thanks !

like below :
enter image description here

An error has occurred during report processing. (rsProcessingAborted)
Query execution failed for dataset 'dsCheck'. (rsErrorExecutingCommand)
ORA-16000: 資料庫或可插拔資料庫已開啟供唯讀存取
SQL Server Reporting Services
SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
2,799 questions
0 comments No comments
{count} votes

2 additional answers

Sort by: Most helpful
  1. AniyaTang-MSFT 12,316 Reputation points Microsoft Vendor
    2023-02-08T01:29:51.79+00:00

    Hi @ShaoYu Hung(洪紹渝)

    Detailed error information is generally stored in log files. Status is a performance diagnosis node, it can only tell you the error code, you need to find the specific details in the log file.

    Please see: https://learn.microsoft.com/en-us/sql/reporting-services/report-server/reporting-services-log-files-and-sources?view=sql-server-ver16.

    Best regards,

    Aniya

    0 comments No comments

  2. ShaoYu Hung(洪紹渝) 20 Reputation points
    2023-02-08T03:01:56.4466667+00:00

    ok ,Thanks !

    0 comments No comments