Author : MD TAREQ HASSAN | Updated : 2021/09/26

What is Developer Edition?

Express vs Developer Edition

Details about SQL Server Editions: https://docs.microsoft.com/en-us/sql/sql-server/editions-and-components-of-sql-server-version-15?#-editions

Installation

Download and install: https://www.microsoft.com/en-us/sql-server/sql-server-downloads

Install using chocolatey

choco install sql-server-2019

Enable SQL Server Authentication

Enable SQL Server Authentication Step 1

Enable SQL Server Authentication Step 2

Enable SQL Server Authentication Step 3

Enable SQL Server Authentication Step 4

Enable SQL Server Authentication Step 5

Enable SQL Server Authentication Step 6

Enable SQL Server Authentication Step 7

Enable SQL Server Authentication Step 8

Enable SQL Server Authentication Step 9

Enable SQL Server Authentication Step 10

Enable SQL Server Authentication Step 11

Enable SQL Server Authentication Step 12

Enable SQL Server Authentication Step 13

Server vs Instance

Important Points About Instance Name

Get Server Name and Instance Name

T-SQL to get server name and instance name

SELECT @@SERVERNAME
SELECT @@SERVICENAME

--For connection string
SELECT @@SERVERNAME + '\' + @@SERVICENAME