How to automate report delivery in SSRS

100,502

Solution 1

When you browse to the report in your reporting services site you should see a tab for Subscriptions. That's where you'd specify the recipients and delivery methods for automated delivery.

Here's a page that describes the process.

Solution 2

I spotted this good youtube link on this topic which helped me:

https://www.youtube.com/watch?v=sO0Y_IxdE8w

Basically the steps (SQL server 2012) are:

Have the Web SSRS folder (in Internet Explorer browser) containing the report (or report link) showing, Hover mouse over the report, this mouse hover action then highlights the report in yellow outline border and offers a dropdown on the righthand side, click on the down arrow to open the dropdown and get list of options .. One option is "manage", choose this option.

enter image description here

Down the left hand side of screen are offered :

Properties

Parameters

Subscriptions

Processing Options

Cache Refresh Options

Report History

Security

Choose the "Subscriptions" option here.

enter image description here

You can then Edit existing subscriptions.. or add a New Subscription .. e.g. as per this screen print

enter image description here

Solution 3

You can use SQL- RD Application for Dynamic schedules

Solution 4

At first set the e-mail at Report Server Configuration Manager, then from your SSRS web browser click on the report and then subscription and give the recipient mail id's and the subject name followed by the mail message. Select the Render Format for the attachment type, set the time and date, that's all!

Regards, Pratik Prakash

Share:
100,502
Eric Ness
Author by

Eric Ness

Updated on July 22, 2022

Comments

  • Eric Ness
    Eric Ness almost 2 years

    I have a report in SQL Server Reporting Services (SSRS) that I'd like to schedule to run automatically as an email. I'd like the report to be attached as Excel file.
    According to the Microsoft overview this should be possible.

    Report delivery. SQL Server Reporting Services supports both on-demand (pull) and event-based (push) delivery of reports. Users can view reports in a Web-based format or in e-mail.

    However I can't find any information on how to actually do this. Does anyone know what tools should be used or where there is a good tutorial?

    Thanks!