5

Can default SQLServer instance name be empty string? Client argues he has ".\" as server\instance name. There are two kinds of instances: default and named instance and it seems logical that not named has no name. But MSDN says: default name is MSSQLSERVER.

1
  • 4
    The service name for the default instance is MSSQLSERVER, but the instance name is empty - so you connect to your default instance using ., or (local), or machinename (without any further instance name) .... Commented Apr 20, 2016 at 4:54

1 Answer 1

4

As you stated, MSDN does state that the default instance name is MSSQLSERVER. It also states that an instance name does not need to be specified for a default instance to make a connection.

So to answer you question, the default instance name isn't empty, but the reference to it can be. Reference using the server / pc name.

More info related to default and named instances can be found here.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.