Viewing 15 posts - 16 through 30 (of 34 total)
Right, I am was interested because I have encountered this issue myself. Sometimes you want spaces in the parameter label so trimming before loading in to the parameter is...
February 2, 2009 at 7:40 am
Peter Brinkhaus (2/1/2009)
February 2, 2009 at 2:44 am
The data driven subscription will send one email for each record in the dataset that your query returns, it won't handle the multiple datasets that your current query is returning....
January 13, 2009 at 3:05 am
You need to put the measure on columns
select sum([Client Tbl Dim Calendar].[Day Week Id].&[0828]:[Client Tbl Dim Calendar].[Day Week Id].&[0824],[Measures].[Quantity Sold]) ON COLUMNS
from [DSVClientAdmin]
January 9, 2009 at 3:24 am
Hi
You should find that the query still works, it is just you get that error message because BIDS can't verify the query because the temp doesn't exist. I still...
November 24, 2008 at 4:08 am
Hi
The above is using a sub cube which is valid, the designer generated mdx uses them all the time. I think what you want is something like this:
WITH
MEMBER [Measures].[SelectedDimensionLabel]
AS...
September 26, 2008 at 1:29 am
Ok so you'd then test the value of count in your sp or query and if you want to email then return a table with any report parameter information and...
September 11, 2008 at 9:07 am
If you set up a data driven subscription then the query that returns the email information can perform a check to determine whether report data exists or not. If...
September 11, 2008 at 4:45 am
Hi
If Report Manager (or SSMS) can't retrieve the meta data from query or sp then the validation will fail and not allow you to progress. I had this problem...
September 10, 2008 at 3:16 am
Hi
I don't want the parameter to act as the value in the filter criteria I want to use it to determine whether to perform the filter or not. I...
September 2, 2008 at 1:06 am
You could do it by adding a report parameter (e.g. ShowAll) and having the initial visibility of the rows to be based on the parameter value. Of course the...
August 19, 2008 at 1:04 pm
Hi
I answered my own question. You just put the code in the jump to url section of the navigation pane. The code was html so I can't...
July 17, 2008 at 8:06 am
Try putting:
SET NOCOUNT ON
at the top of your proc.
July 17, 2008 at 7:34 am
Yes, I could retrieve a subject line from the data driven sql.
The default subject when you set up a subscription is
@ReportName was executed at @ExecutionTime.
These 2 variables...
June 25, 2008 at 8:16 am
That has cracked it, well done!
RS is quirky sometimes, I would have thought that setting repeat header rows on new page applies to the WHOLE table not table minus footer!
Thanks...
June 25, 2008 at 6:04 am
Viewing 15 posts - 16 through 30 (of 34 total)