Hi,
I need to move some database from one server to another one. We have a bunch of queries targeting more then one database on the same server, something like this one:
select * from database.dbo.tablename
I would like to be able to move the database to another server. If I create a Link Server, I need to review all queries to add the link server in it, like this
select * from linkserver.database.dbo.tablename
Is there a way to create a remote database. So I will not have to change my queries.
Thanks