Can someone explain why after installation of SQL Server some PC get a suffix of \SQLEXPRESS
and some don't? Is there an option to change it?
Any suggestions or tips would be appreciated.
Can someone explain why after installation of SQL Server some PC get a suffix of \SQLEXPRESS
and some don't? Is there an option to change it?
Any suggestions or tips would be appreciated.
That is the SQL Server instance name for the new SQL Server you installed. A single machine can host multiple instances of SQL Server. The naming convention you see: hostname\instance_name
is used to identify the different SQL Server instances running on a single machine.
When you install SQL Server Express, the default instance name created is SQLEXPRESS
.
See:
The hostname is used for machine to machine networking. That is the same name that is used for Netbios/SMB file sharing services (\\hostname) and normally resolved for TCP/IP services through DNS (http://hostname).
The hostname\instance_name is purely a SQL server naming convention. Its only purpose is to identify a running instance of SQL server. The SQL server client network libraries know how to resolve these instance names. The standard network stacks do not. This means the following do not work:
The \instance_name only works with SQL server network clients.