Forum Replies Created

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

  • RE: How can i get this output ??

    You can also use PIVOT operator. Here is the example

    select id, USD = ISNull([USD], 0), IND = IsNull([IND], 0)

    From

    (

    Select id, Curr, rate

    from Table

    ) AS Tb

    Pivot

    (

    Sum(Rate)

    For Curr in ([USD], [IND])

    )...

  • RE: Dynamic Connection Strings in Reporting Services 2005

    Also, what if we don't know the credentials. can we dynamically supply the user and its password to the datasource?

  • RE: split the table

    You can use Set the Row Number for each component type by using Row_Number function and these use Full Join to arrange them. Here is the solution.

    Declare @Emp_Dtl Table (Component...

  • RE: Linking to the Previous Row

    A very nice article. Because sometimes i have to use Row number and i didn't know how to Generate Rows. previously i use to left joins and complex sub-queries to...

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