Using SQL Server 2016 (localdb)\ProjectsV13
, I created a database - let's call it MyDatabase
. All was fine and dandy until I decided I no longer needed it...
So in SSMS 2016, while connected to (localdb)\ProjectsV13
, I right clicked on MyDatabase
and clicked "Delete".
Now when I try to establish a connection to (localdb)\ProjectsV13
, it fails.
Here's the error message:
Cannot connect to (localdb)\ProjectsV13.
Cannot open database "MyDatabase" requested by the login. The login failed. Login failed for user 'MyDomain\MyUserName'. (Microsoft SQL Server, Error: 4060)
So even though I deleted the MyDatabase
database (I know - I should of just run a DROP), SSMS is still trying to connect to MyDatabase
which of course fails and then prevents me from connecting to (localdb)\ProjectsV13
at all - which is the real issue.
How can I resolve this so that SSMS doesn't try to connect to the deleted MyDatabase
database when connecting to (localdb)\ProjectsV13
?