Forum Discussion
Running both SQL Server 2017 Standard and SQL Server 2019 Express under Server Managment Studio
- Jan 13, 2022
MCI-IT , in the discovery report I see there are 4 instance of SQL Server installed
(Standard) = 2017
SQLEXPRESS = 2016
SQLEXPRESS01 => 2019
MSSQLSERVER2019 => 2019First ist default, the others are named instances. We can install 1 default and up to 50 named instance on one machine and they can have different versions and different editions; see Work with multiple versions and instances - SQL Server | Microsoft Docs
To connect to a named instance you have to add the instance name with backslash to the server name. If you want to connect to SQL Express 2019, enter
ServerName\SQLEXPRESS01
in the server name field in SSMS login dialog.
MCI-IT , in the discovery report I see there are 4 instance of SQL Server installed
(Standard) = 2017
SQLEXPRESS = 2016
SQLEXPRESS01 => 2019
MSSQLSERVER2019 => 2019
First ist default, the others are named instances. We can install 1 default and up to 50 named instance on one machine and they can have different versions and different editions; see Work with multiple versions and instances - SQL Server | Microsoft Docs
To connect to a named instance you have to add the instance name with backslash to the server name. If you want to connect to SQL Express 2019, enter
ServerName\SQLEXPRESS01
in the server name field in SSMS login dialog.