I'm not sure if what I want to do is possible and I'm new enough to Reporting Services that I'm not even sure what to Google. What I'm looking to do is this. I have several instances of SQL Server on multiple servers. I want to run a simple query on each of them (probably using multiple Data Sources) and put the results into a single list that is sorted dynamically based on the datetime returned (e.g. Dev might show on top, but if I restart the service on Prod and rerun the report, then Prod would show on top).[code="sql"]SELECT @@SERVERNAME AS [Server], create_date AS [UpSince]FROM master.sys.databases WHERE name = 'tempdb'[/code]Is this doable with SSRS? If so, would you mind pointing me in the right direction?Thanks!
↧