I need to migrate a SQL database to a new server. All applications access the old SQL Server with a named instance SQLA\InstOld. Now the new SQL instance is at SQLB\InstNew.
I don´t like to change all applications/clients, as in the past the connection string was hard coded. I tried several settings with SQL alias and DNS cname, with no success.
When using a DNS cname from SQLA to SQLB, I can access the new database with SQLA\InstNew or even just SQLA, as "InstNew" is the only and default instance. But what I need to achieve is to get access with SQLA\InstOld to the new instance, so I don´t need to change the running applications. I tried to set different SQL alias, like "InstOld" to "InstNew", with no success.
Any tips on how to achieve this?
Thank you Michael