Can we show data from two databases in the same SSRS Table

  • Hi All,

    II wanted to know if it is possible to join tables in to databases in SQL 2005(They have a common field).

    eg Database-A =>

    Table - InfoA(id,name)

    Database-B =>

    Table - InfoB(id,CreationDate)

    So can I get a single select clause to have CreationDate and Name in a dataset?

    Also please let me know if we can show the data from two databases in a single SSRS table.

    TIA,

    Nikhil

  • Select CreationDate,Name From [Database-A].[UserName].InfoA Ta INNER JOIN [Database-B].[UserName].InfoB Tb

    ON Ta.id=Tb.id

    Is this what you require?

    let me know if you are helpfull with the above Query, if this is not that what you want then ignore.

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

You must be logged in to reply to this topic. Login to reply