February 19, 2013 at 9:07 am
Hi ,
I want to schedule a report every 110 days after a Quater.
Example: Last quater is december 31 2012 + 110 days .So my report will run again on April 20 ( which is 110 days after last quater).
Can any one tell me how to do this?
Thanks,
Komal
February 19, 2013 at 9:24 am
To get last day of last quarter:
select DATEADD(qq,DATEDIFF(qq,-1,(DATEADD(qq,DATEDIFF(qq,0,GETDATE()),0))-1),-1)
Then add 110.
February 19, 2013 at 9:34 am
I can get the last quarter date.But need to add subscription to run after 110 days after last quater.
February 19, 2013 at 9:47 am
not a reporting services guru, but for regular scheduled jobs, i can create a job which does something, like send an email or update or whatever, that runs every day, but only does something on 110 days after some specific date calculation.
can't you do the same in reporting services? send only if data meets a certain criteria, and schedule it to run every day forever(so it effectively SENDS 4 times a year,but checks whether it should run ever day)
Lowell
February 19, 2013 at 9:58 am
If i schedule it to run daily through subscriptions ( ssrs), in SSRS, report will run daily but populates data only on that particular day( checking condition if today is 110th day after a quater and run my storedprocedure).
I dont want to send a blank report to the users daily.
February 19, 2013 at 10:16 am
I'm awful sure there is a solution to that; I know i've seen lots of SSRS topics like "don't send if no data is found", kind of threads.
this was just the first google item i found:
Lowell
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply