Forum Replies Created

Viewing 15 posts - 3,961 through 3,975 (of 4,085 total)

  • RE: MDX query for MarketShare Calculation

    Can you post your query? It helps to see what you have already done.

    Drew

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: "Factorial" query.

    Depending on exactly what you are trying to accomplish, you might be better off using the WITH CUBE option. It will give you summaries for every possible combination of...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: MTD AND YTD TOTALS IN SQL QUERY

    Since you failed to provide DDL, sample data, and expected results, I had to guess at what you wanted. I also had to use the AdventureWorks database.

    The following code...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: SQL query help needed

    Make sure that the TableName = 'Sale' is in the ON clause and not in the WHERE clause.

    Drew

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: SQL Server 2008 Reporting Services System Out of memory error

    You're welcome. It's nice to know that my Master's in Linguistics didn't totally go to waste.

    Drew

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: SQL Server 2008 Reporting Services System Out of memory error

    Marcin Gol [SQL Server MVP] (9/7/2009)


    sory but what does it mean: "lakhs" ?

    It means 100,000. It comes from the same Indo-European root as lox. Since salmon weren't common...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: dates sql query

    lmu92 (9/6/2009)


    create TABLE #t (start datetime, finish DATETIME,

    CONSTRAINT [PK_t_start_finish]

    PRIMARY KEY CLUSTERED (start, finish)

    )

    INSERT INTO #t

    SELECT '11/08/2009 9:00:00 AM', '11/08/2009 10:00:00 PM' UNION ALL

    SELECT '11/09/2009...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Question about the tools to be used for viewing SSAS cube by user

    It's very easy to view your cube in Excel 2007.

    From the Data ribbon, select "From Other Source" in the "Get External Data Section." (Alternatively you can use the Existing...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Report filed with IIF

    You have two options depending on what you need. Typically, I would just exclude these records from the original dataset in the first place. The other option is...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Add Details rows to a SSRS report

    It doesn't matter which table you use as long as it has enough rows to give you the highest number that you want to allow. I simply used the...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: How can i sort the Month No field on SSRS in ascending order

    rabbu456 (9/3/2009)


    Hi thanks for ur reply can u be little bit clear i m new to SQL .................and explain me in detail if possible

    Look up Order() in BOL. ...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Converting from NVarchar to DateTime

    When you select a datetime value in SQL Server, it outputs it in ANSI format. This allows the interface to select the appropriate format. If you really must...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: How can i sort the Month No field on SSRS in ascending order

    Open your cube in BIDS and check the properties for that dimension. You want to make sure that the OrderBy property is set to Key rather than to Name.

    You...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: Add Details rows to a SSRS report

    Yes, you can use a WHILE loop, but I would not recommend it. According to the execution plan the WHILE loop is 24 times as expensive as the Tally...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • RE: question on mdx scripting

    Mh (9/3/2009)


    So far, I have the following script written:

    with set [Hrsused] as

    'filter({[Dim Time].[Hour].Children},[measures].[Appt count] > 0)'

    member

    [dim time].[hour].[Hrsworked]

    as 'count({[Hrsused]})'

    please let me know how I can get the above result using...

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

Viewing 15 posts - 3,961 through 3,975 (of 4,085 total)