Viewing 13 posts - 1 through 13 (of 13 total)
Data driven subscriptions also require the enterprise edition of SQL Server.
This is a bit of a roundabout solution but what I usually do is...
1.) Create a subscription for the report...
February 7, 2014 at 2:04 pm
Just use an IIF statement...
=IIF((Sum(Fields!DBA_Estimate.Value, "dsStatistics")-(Sum(Fields!DBA_Actual.Value, "dsStatistics"))) < 0, "Actual time is more than the estimated time.", (Sum(Fields!DBA_Estimate.Value, "dsStatistics")-(Sum(Fields!DBA_Actual.Value, "dsStatistics")))/60)
January 29, 2014 at 7:37 am
Check out MailSystem.NET on CodePlex [/url].
I managed to get a C# script task in SSIS working to download attachments from GMail.
January 16, 2014 at 11:47 am
You can use an expression to change the FontWeight if you have a column in your dataset that you can use to identify the rows. Something like the following...
=IIF(Fields!<Your...
December 12, 2013 at 2:03 pm
I usually handle this with a script task. In C# it would be something like...
File.Move(Dts.Variables["User::FullyQualifiedFileName"].Value.ToString(), Dts.Variables["User::FullyQualifiedFileName"].Value.ToString().Replace(".csv", DateTime.Now.ToString() + ".csv");
December 12, 2013 at 8:35 am
1 - Yes. All subscription in SSRS are SQL Agent jobs so you can set up your notifications off of the jobs. You'll find the SubscriptionID from the...
May 20, 2013 at 11:49 am
You could add an additional parameter that filters the selections in the multi-select. Something like "Show Charts" and have it be a yes/no that's defaulted to no. Use...
July 6, 2012 at 7:07 am
No, a IIF won't work here, you need to return something from the dataset.
What you can do is something like inserting your data into a temp table instead of simply...
June 27, 2012 at 7:50 am
You're going to need to return data from the dataset to do that.
My suggestion would be to check and see if there is any data meeting your criteria in your...
June 26, 2012 at 3:49 pm
Verify that your dataset is returning data. If you don't have a header/footer and there are no rows returned from the dataset then you'll get an "empty" area like...
June 26, 2012 at 3:34 pm
You could inline case statements here...
SELECTSUM(CASE WHEN assignment = '7' AND rank = '1' THEN 1 ELSE 0 END) AS firstshift
,SUM(CASE WHEN assignment = '8' AND rank = '1' THEN...
March 2, 2012 at 2:33 pm
Unfortunately, SSRS does not have the same feature. You can select all the objects in the report (Ctrl+A) and then move them down together so that you keep the...
October 27, 2008 at 8:37 am
What you want to do is script the table(s) first. In Enterprise Manager or SSMS (not sure whether you're using 2000 or 2005), right click on the table you want...
September 5, 2007 at 3:37 pm
Viewing 13 posts - 1 through 13 (of 13 total)