I installed SQL Server 2008 (SQL Server 2005 was already installed) on my XP box and name the local instance of the database so that it wouldn’t clash with SQL Server 2005.
Now I want to change the mapping of (local) from SQL Server 2005 to my non-standard named SQL Server 2008 instance. Anybody know how to do this?
I’m afraid Mladen is correct.
You can move the db’s from one instance to another using attach/detach or backup/restore.
You can transfer all logins (if needed) with this method.
.
You will have to do the following (Assuming you’d like to make 2008 your default instance):
Good luck!