Posted by Erland Sommarskog on 06/15/07 21:10
Ed Murphy (emurphy42@socal.rr.com) writes:
> The problem is that the name of the source database varies from
> one system to another, so I want to pass the database name as a
> parameter. I think I could do the following, but is there a
> better way to go about it?
On SQL 2005 you could use synonyms:
CREATE SYNONYM mytable AS thatdatabase.dbo.hertable
When you move to a new database you only need to update the synonyms.
--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx
[Back to original message]
|