Forum Replies Created

Viewing 12 posts - 1 through 12 (of 12 total)

  • RE: Can I stop SSRS from attempting to render a chart?

    Amit Raut (10/1/2013)


    May be number of queries in the report cause OutOfMemory exception. Tyr tuning the queries. You may handle rendering of report by checking record count, but what if...

  • RE: Subreports

    Koen Verbeeck (9/25/2013)


    Eliza (9/25/2013)


    Koen Verbeeck (9/25/2013)


    Maybe you can put the name and the subreport in a table?

    Hi,

    The name and subreport are in a tablix deatil row if this is what...

  • RE: Subreports

    Koen Verbeeck (9/25/2013)


    Maybe you can put the name and the subreport in a table?

    Hi,

    The name and subreport are in a tablix deatil row if this is what you mean?

    Thanks

    Eliza

  • RE: Advice on complex logic with embedded functions.

    busraker (9/17/2013)


    Eliza (9/16/2013)


    Hi,

    All the information for parameters comes from three tables. All joined with inner joins.

    At the moment I feel I have functions embedded with functions and its not...

  • RE: Dazed and Confused

    Hi All,

    Thanks for the replies.

    The issue has now been resolved. We found closing the session and creating a new one and running the SQL made it work

    The Line

    AND YD.[Level]...

  • RE: Csv list in column to separate columns

    frfernan (10/1/2012)


    Hello,

    you can do it in an iterative way:

    Find the first colon, keep the left half into Col1 and move the right half into Col2.

    Find the first colon in Col2,...

  • RE: SUBSTRING And CHARINDEX to find start/end of string

    Hi All,

    Thanks for some of the solutions, I've tried a few.

    SELECT SUBSTRING(@var,28+CHARINDEX ('CustomerFornm: Changed from ',@var),CHARINDEX('CustomerDOB',@var)- CHARINDEX ('CustomerFornm: Changed from ',@var)-28) AS 'Is this really what you

    want?'

    Doesn't work as...

  • RE: Csv list in column to separate columns

    Jeff Moden (9/30/2012)


    Eliza (9/30/2012)


    Hi Jeff,

    Thanks for your reply. I have have played around with the SQL but still struggling. I can get it to pivot from being rows...

  • RE: Csv list in column to separate columns

    Hi Jeff,

    Thanks for your reply. I have have played around with the SQL but still struggling. I can get it to pivot from being rows to columns and...

  • RE: Csv list in column to separate columns

    Jeff Moden (9/17/2012)


    Eliza (9/17/2012)


    Hi all,

    Can I ask please if I have a row and one column has a csv list in it. Is there a way please to split...

  • RE: SQL - Summarising data at different levels

    LutzM (2/25/2012)


    Did you try using SUM() OVER()?

    SUM(Num) OVER (PARTITION BY Age) AS Ga

    SUM(Num) OVER (PARTITION BY Age, D1) AS GaD1

    SUM(Num) OVER (PARTITION BY Age, D1, D2) AS GaD1D2

    This works brilliant,...

  • RE: Tablix in page header

    The key description are very long and fill the length of the page. I did try placing the key in the header record as a tablix, which had some...

Viewing 12 posts - 1 through 12 (of 12 total)