Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a SSRS report. This report has two data sets from two different data sources. I need to do a conceptual join on these two data sets. For example, assume I have the following datasets A and B.

DataSet A
Data Source is SqlServer P
SELECT user_id, user_name from users

DataSet B
Data Source is SqlServer Q
SELECT change_id, user_id, change_details from changes

Eventually, I just want a SSRS table with user_name and change_details. After a little online research, I've found three options:

  1. Join the queries in the dataset using server linking from SQL Server.
  2. Join the queries in the dataset using openrowset() from SQL Server.
  3. Use an external assembly to make a web service call and cut out the 'users' datasource.
  4. Conceptually 'join' the datasets using a report/sub-report paradigm in which the report's grid has a sub-report that just takes the user_id for a given row and populates a single text box with the user name.

They all feel like they have some headaches. Of these, I think I prefer option 4 because it forces this 'join'ing logic into the report and leaves the queries simple. In addition, it allows me to skip alot of overhead setting up linked servers whenever a report is deployed to a different environment. Option 1 looks doable as well, and all of the querying would be encapsulated in the dataset. Option 2 doesn't look strong because all of the documentation for openrowset seems to say to use linked servers instead. Option 3 is currently not feasible with all of the required setup to use external assemblies, but I think this would be a viable alternative otherwise. With this said, are there any other reasons for choosing one of these solutions over another?

I'm working in SSRS 2008 if that is relevant.

share|improve this question

4 Answers

up vote 10 down vote accepted

In 2008 R2 this is easily accomplished using the Lookup()-function, as described here:

http://prologika.com/CS/blogs/blog/archive/2009/08/12/reporting-services-lookup-functions.aspx

share|improve this answer
My solution worked, but was quite hacky (not to mention slow and it exports really poorly). This is a nice solution and happy to see this functionality in SS2008 R2. Thanks for adding this Thomas. – LJM Feb 24 '12 at 13:45
This is WAY better than the subreport option I used in the past. Thank you for this! – David Stratton Jan 22 at 18:57

You can do 1, 2 or 3. Not 4: you simply can't join or merge in SSRS itself.

I'd start with option 1: your logic is good about why I'd choose it. Clean, simple, handled by the database engine.

share|improve this answer
praise the Lord for gbn. this guy selflessly helps everyone – Артём Царионов Apr 11 at 5:26

I ended up going with option 4, which actually is possible. As I said in the question, it is only a 'conceptual' join, as there is no real joining of datasets that occurs. Rather, if I create a main report with a table representing 'change's, then in one of the columns I can reference a sub-report with a data source set as the 'user's. The parameter to the sub-report is 'user_id', which I can grab from the specific row of the table. Within the sub-report, I have only a single text box that takes in the user id and looks up the user name. From the perspective of the user of the main report, it appears that main report is looking up the user name value. However, main report is actually delegating that responsibility to the sub-report.

Initially I was a little worried that if I had 1000 'change' rows for 10 distinct 'user's, then I'd have 1000 calls to the 'user' table. Not so. I watched the profile for the SQL Server and only saw one call per 'user' returned from the db. Apparently SSRS caches this result and re-uses it.

share|improve this answer
Note that while this worked, it actually introduced some challenges around exporting to Excel. – LJM Apr 14 '11 at 22:40
any way you can elaborate on how you did this? – Sonic Soul Jul 11 '11 at 22:48
I can elaborate, but what exactly is confusing? – LJM Jul 19 '11 at 18:30
How does this work when using row or column grouping? – Joe Philllips Dec 23 '11 at 19:28
It would depend on your exact situation, but I imagine it would. – LJM Dec 30 '11 at 13:57

Here is a step by step for option #4. The link in the marked answer is nice, but a step by step is helpful for the inexperienced.

http://sprider.org/2013/01/22/ssrs-join-multiple-sharepoint-list-columns-using-lookupset-function/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.