|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Tuesday, March 19, 2013 1:38 PM
Points: 168,
Visits: 540
|
|
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
|
|
|
|
|
SSC Eights!
      
Group: General Forum Members
Last Login: Today @ 6:17 AM
Points: 863,
Visits: 426
|
|
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.
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Tuesday, March 19, 2013 1:38 PM
Points: 168,
Visits: 540
|
|
| I can get the last quarter date.But need to add subscription to run after 110 days after last quater.
|
|
|
|
|
SSChampion
        
Group: General Forum Members
Last Login: Today @ 8:17 AM
Points: 11,791,
Visits: 28,072
|
|
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
--There is no spoon, and there's no default ORDER BY in sql server either. Actually, Common Sense is so rare, it should be considered a Superpower. --my son
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Tuesday, March 19, 2013 1:38 PM
Points: 168,
Visits: 540
|
|
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.
|
|
|
|
|
SSChampion
        
Group: General Forum Members
Last Login: Today @ 8:17 AM
Points: 11,791,
Visits: 28,072
|
|
|
|
|