Forum Replies Created

Viewing 15 posts - 4,006 through 4,020 (of 4,087 total)

  • RE: How-do-I test SQL Reports?

    Exactly what are you testing for? Accuracy? Efficiency? Legibility? Something else?

    Drew

  • RE: Subquery with case statement

    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...

  • RE: Just pull back the MAX Date

    smunson (8/19/2009)


    I hate to rain on the MAX of the DATE party, but just using MAX alone isn't going to get the results needed, as what happens when there's more...

  • RE: Ideas on rule based SSIS package

    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...

  • RE: SSAS: How can I filter by customer if I have ~ 3 million customers?

    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)...

  • RE: Help required!!

    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...

  • RE: Help required!!

    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...

  • RE: Help required!!

    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...

  • RE: Subquery with case statement

    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

  • RE: Help required!!

    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...

  • RE: Comparing 2 Months

    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...

  • RE: Problem emailing query results with Database mail

    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...

  • RE: How to calculate weighted averages

    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....

  • RE: Just pull back the MAX Date

    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...

  • RE: How to calculate weighted averages

    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...

Viewing 15 posts - 4,006 through 4,020 (of 4,087 total)