SSRS haw Can I check are reports was sent?

Artur Bogusławski 21 Reputation points
2023-05-26T07:34:37.37+00:00

I want know, which reports was send and to whom.2023-05-26_09h09_28

I want will create SQL which sent me raport with data.

Each day server sents about 60 report to others person.

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,807 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Olaf Helper 40,901 Reputation points
    2023-05-26T07:38:35.0366667+00:00

    You can get it from view(s) ExecutionLog in ReportServer database, request type = Subscription; see

    https://learn.microsoft.com/en-us/sql/reporting-services/report-server/report-server-executionlog-and-the-executionlog3-view?view=sql-server-ver16

    SELECT *
    FROM ReportServer.dbo.ExecutionLog3 AS EL
    WHERE RequestType = 'Subscription'
    
    
    0 comments No comments

  2. AniyaTang-MSFT 12,321 Reputation points Microsoft Vendor
    2023-05-29T01:54:14.5333333+00:00
    0 comments No comments