I m developing a web app in a testing environment with test sql servers and databases. I m currently adding a linked server and accessing the databases and tables in the linked server using [Servername].[DatabaseName].dbo.[TableName].
But after pushing it to production the DB servers name will change. So should i need to open each and every stored procedure again and change the server name?
What is the usual practice?
Thank you.