I need to backup a DB using SQL server 2012 to match another server it is going to. However on my local machine I'm currently running 2014. I can see that SQL server 2012 is installed along with various other versions. How can I change which version is running from 2014 to 2012?
Asked
Active
Viewed 75 times
0
-
3You can run multiple versions and instances of SQL Server concurrently. If both SQL Server 2012 and 2014 are installed then one is a default instance and the other is a named instance... or they're both named instances. You need to connect to the appropriate instance of SQL Server. – joeqwerty Aug 01 '18 at 14:24
-
Ah ok, I'll give that a go cheers. – Rob Aug 01 '18 at 14:45