I want to schedule two reports, one report to be triggered on the last working day of the month. Another report to be triggered on the first workday of the each month. How can I do this?
答案 0 :(得分:1)
目前无法通过标准订阅机制执行此操作。
您的要求不仅与UI(ReportServer网站)冲突,而且与Reporting Services数据库设计冲突。您可以查看Schedules
表以了解我的意思。
你可以做三件事:
很好的方法,但(非常)长期
提交connect建议。
推荐但需要开发
开发一个使用Reporting Services Web服务并具有定制订阅机制的应用程序。
你可以考虑做第2步& 3。
答案 1 :(得分:0)
a subscription on the first day of the month is pretty easy. Whether data driven or static the schedule you set up can be set to run on the first day of every month.
For the last day of every month, you'll need to create 3 subscriptions. One subscription for September, April, June and November (on calendar day(s) = 30), one for all the rest (on calendar day(s) = 31), and one for February alone (on calendar day(s) = 28).
Leap years.... you're on your own there...