I have just installed VS2019 with "SQL Server Data Tools" which automatically installed two instances of LocalDb on my machine (both with version 2016 SP1).
- MSSQLLocalDb (automatic instance)
- ProjectsV13 (named instance I think)
After that, I separately downloaded and installed SQL Server 2014 LocalDb with an expectation that I'll automatically get a third instance with version 2014. But unfortunately, I didn't get it. After searching on Google I came to know that SQL Sever LocalDb 2016 and 2014 have same name of automatic instance (i.e. MSSQLLocalDb) and we have to use the LocalDb Command Line utility to manage that which version of SQL Server will own the MSSQLLocalDb.
Can somebody help me to have separate names for the automatic instances of both versions (2016 and 2014) so that both automatic instances can coexist on same machine?
I know I can create a named instance of either version which can have the name of my choice but I don't want to do that. I just want automatic instances.