I am relatively new to SSRS and have a quick question - SQL 2005 sp2
comes with some free reports called Performance Dashboard. I have
successfully published these in SSRS but, would like to be able to
select the server I want to run it against rather than having one set
of reports for each server. Is there a way to have the data source
prompt for the server?
Thanks,
Then you need to have a parameter that you select from that specifies the
server.
--
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"kodaksmile" <laura...@gmail.com> wrote in message
news:20c73b66-334e-4c8e...@z41g2000yqz.googlegroups.com...
Create a parameter for server name and/or database name
Edit your data source and use the following expression in the connection
string:
="Data Source= " & Parameters!Server.Value & "; Initial Catalog="
&Parameters!DB.Value.
You will not be able to use a shared data source if you do this
"kodaksmile" wrote:
> .
>