Viewing 15 posts - 4,006 through 4,020 (of 4,087 total)
Exactly what are you testing for? Accuracy? Efficiency? Legibility? Something else?
Drew
August 19, 2009 at 3:51 pm
h_maksuda (8/19/2009)
Thanks Drew for the reply.I tried and it giving me Cartesian Product.
Is your data representative of the actual data? Your data only has one value for each date...
August 19, 2009 at 3:42 pm
smunson (8/19/2009)
August 19, 2009 at 3:30 pm
It sounds like a calculated column transformation will do the trick.
If that doesn't work, you can certainly do a conditional split into as many outputs as necessary (and hopefully you...
August 19, 2009 at 10:17 am
Another option to consider in connection with the hierarchies is building a drill-through report. In your cube, the hierarchy would only go down to a given level (say city)...
August 19, 2009 at 10:04 am
I've given you more than enough information to finish this on your own. I suggest you look at what I've already written and try to come up with the...
August 18, 2009 at 11:09 pm
I modified the code to show you how this would be accomplished. Since your test data only has one school and one district, the numbers by school and by...
August 18, 2009 at 8:53 pm
mahesh.vsp (8/18/2009)
Using the below output, how can i get the total count of students who has the given the exam for which i need to get the values as 3.
This...
August 18, 2009 at 8:34 pm
I think this will give you what you are looking for.
SELECT IsNull(t2.Event_Total, t1.Event_Total) AS Event_Total
FROM qtr_totalinfo AS t1
LEFT OUTER JOIN t2
ON t1.Event_Qtr = t2.Event_Qtr
Drew
August 18, 2009 at 3:17 pm
mahesh.vsp (8/18/2009)
Hi Pals,
First, we don't need a history of the universe to help you solve your problem. You could have easily started with the unpivoted table rather than from...
August 18, 2009 at 2:58 pm
Without sample data it's really hard to know, but it sounds like you don't really need to compare months, you just want members who were added this month. There...
August 18, 2009 at 1:27 pm
It might work with a global temp table. You define a global temp table using two octothorpes instead of just one
Create Table ##temp
The global temp table can be used...
August 18, 2009 at 1:02 pm
I think the confusion is coming because of the term "Total Customers". There are actually two separate measures which could be called "Total Customers" and you're mixing the two....
August 18, 2009 at 10:31 am
Ryan Keast (8/18/2009)
Just had a chance to test out your code and I am still pulling back the three results as originally posted.Any more help would be appreciated.
As I said...
August 18, 2009 at 8:46 am
Revenue should be one of the facts in your fact table and this fact should become a measure when you create and process your cube. If revenue is not...
August 18, 2009 at 8:17 am
Viewing 15 posts - 4,006 through 4,020 (of 4,087 total)