Dynamically Change Server and DB Names in Stored Procedure
- by hgulyan
I have the same query in a stored procedure that needs to be executed on different servers and databases according to parameters.
How can I arrange this without exec or sp_executesql?
I'm using SQL Server 2008.
Thank you.