0
votes

I had previously installed SQL Server 2005 and its management tools. Now I have installed SQL Server 2012 and Management studio 2012 along with it. I did not uninstall the previous SQL Server 2005 before installing the server 2012.

Now the problem is that the management studio 2012 is still using the old instance of server 2005, which is creating troubles while restoring database, whose backup was taken with Server 2012. Here is a snapshot from management studio 2012

How do I change the instance version to use SQL Server 2012 in Management studio. If there is something I am doing wrong, or if there is any alternative, please tell. Thanks

2

2 Answers

1
votes

If you have both versions installed at once they must be using different instance names.

PC\SQLEXPRESS is 2005 instance, there must be another instance name for 2012 e.g. PC\SQL2012

You can find the instance name out in the SQL configuration manager.

1
votes

Found the solution. Used (LocalDb)\v11.0 as server name and it worked.