Viewing 15 posts - 136 through 150 (of 237 total)
You can use multiple groups in the same tablix that aren't nested within each other. That way your 3 month average doesn't need to be in a second tablix.
You...
January 7, 2013 at 3:18 pm
31 million rows is large but not huge.
If the stored proc is taking 30 minutes to filter on the date then it sounds like you need to add an index...
January 7, 2013 at 3:11 pm
Chris Webb did a good article on this for something similar a while back which might help:
http://cwebbbi.wordpress.com/2011/12/22/replacing-cell-security-with-dimension-security/[/url]
I'm not sure that a dimension mapping every single user to services will be...
January 6, 2013 at 11:54 pm
It sounds like you've added permissions on the report server website appropriately, so my first thought is about the datasource connection.
When you are in visual studio (BIDS) you create a...
January 6, 2013 at 11:36 pm
Firstly, can you provide more information?
E.g. How long is the timeout, what is the query (provide SQL), how many rows, an example of the data and the purpose of...
January 6, 2013 at 11:21 pm
Name the cells so they are easy to remember e.g. MonthTotal and then refer to those cells directly in an expression:
=ReportItems!MonthTotal.value
January 6, 2013 at 11:12 pm
dwain.c (1/2/2013)
You should use this instead:
CAST(VARCHAR(19), @EndDate,120)
Or if additional precision is required (milliseconds) use:
CAST(VARCHAR(23), @EndDate,121)
I think that should have been convert, not cast. I'm sure just a typo. 120 also...
January 6, 2013 at 6:06 pm
The way I usually do this is to create a linked server object on the SQL server database, and then in the query you can do something like this
select a.column,...
January 6, 2013 at 4:33 pm
This is a problem with IE.
SSRS uses the <Title> tag in the generated html for tooltips, which is subject to a setting on your machine. It's not a setting...
January 2, 2013 at 11:39 pm
I've done this many times by creating a linked server in SQL server that connects to the SSAS instance.
Stacia has a good brief article about this
There are, however,...
January 1, 2013 at 10:55 pm
If you are able to edit the SQL then do as robert says. If you aren't good with SQL or are unable to edit the SQL for some reason then...
January 1, 2013 at 10:05 pm
Great article, I think it will really help people new to data mining models in SSAS.
An important point: you said in the beginning "we need a lot of data to...
January 1, 2013 at 7:42 pm
I can see why you might not want to use the @StartDate and @EndDate suggestion because you probably only want your users to have to pick one date and have...
December 27, 2012 at 5:40 pm
This is an eternal debate.
My own experience is that fresh out of uni with no work experience, I thought I was awesome but no-one would hire me because most...
December 19, 2012 at 4:50 pm
I showed this thread to the Business Consultant I mentioned and these are her comments. I've posted them here with permission. Note this is an accredited expert in the field,...
December 10, 2012 at 11:36 pm
Viewing 15 posts - 136 through 150 (of 237 total)