I'm trying to get a default instance created with Express and realized that the Express install creates a 'default' named instance of SQLEXPRESS. I really don't want to have anything at all, I want to connect just to the server. So upon research, I
found that if you put in 'MSSQLSERVER' as a named instance, it will create a default instance.
I was thinking everything was going great, but I can't connect to the instance with the just the computer name. It will let me connect with (local), '.' and localhost. Is there any way to get Express to work with a default instance?
View Complete Post