I need to create a schedule that runs a report once an hour on Fridays. The hourly schedule does not provide a way to select days of the week. Does anyone have a solution or am I missing something?
If you have SQL Server Agent running (on the Server with your relational DB), you can create a Job in there to run your report. Create a subscription for your report, schedule it to run once, set the date to yesterday. In the ReportServer database in SSMS it will create a subscription_id for the subscription. You execute the report from your Job Step using this subscription_id.
Do I need the original Agent job that was set up through SSRS subscriptions or can I delete? This is the job I got the "where @EventData = the subscription_id you got from the subscription table." I didn't know if the new job I created is somehow dependent on the subscription job when calling the subscription_id.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.