SQL Server2022 installation tutorial

SQL Server is a relational database management system. It was originally developed by Microsoft, Sybase and Ashton-Tate, and the first OS/2 version was launched in 1988. After the launch of Windows NT, Microsoft and Sybase parted ways in the development of SQL Server. Microsoft transplanted SQL Server to Windows NT systems and focused on developing and promoting the Windows NT version of SQL Server. Sybase is more focused on the application of SQL Server on the UNIX operating system.
SQL Server 2000 is a SQL Server database management system launched by Microsoft. This version inherits the advantages of SQL Server 7.0, while adding many more advanced features. It has the advantages of ease of use, good scalability and high degree of integration with related software, and can be used across a variety of platforms ranging from laptops running Microsoft Windows 98 to large multi-processor servers running Microsoft Windows 2000.

1. Download the installation package

Official website: SQL Server Download | Microsoft

  1. Download SQL Server

image-20230908085353759

  1. Download the visualization tool SSMS

image-20230908085450087

image-20230908085505643

2. Install SQL Server2022

  1. Run the [ SQL2022-SSEI-Dev.exe ] installation file and select custom installation
image-20230908085726408
  1. You can change the installation path according to your needs

image-20230908085858726

  1. Waiting for online installation...
  2. After the installation is complete, a page will pop up automatically. Select [Install a new SQL Server] under the [Install] option.

image-20230908091252384

  1. Select the Developer version and click Next

image-20230908091339545

  1. Default to next step, then uncheck automatic updates, and then continue to click next

image-20230908091406921

  1. There is a warning⚠Don’t worry, just go to the next step

image-20230908091423850

  1. Uncheck [Azure for SQL Server] and click Next

image-20230908091459830

  1. Just select the following examples in Examples

image-20230908091852517

10. Instance directory, it is recommended to create three new files in the folder where you downloaded SQL Server, and then put them in it.

image-20230908092041043

  1. Click Next
  2. Instance configuration, generally select the default instance and click Next

image-20230908092217954

  1. Service account configuration, generally keep the default and can be modified after installation, click Next

image-20230908092327451

  1. Server configuration, select mixed mode, set sa password (sa is the super administrator of sql server)

image-20230908092430592

  1. Click to add current user, wait for the user to be added automatically, and then next step

image-20230908092458987

  1. Click Install and wait for a while...

image-20230908092919309

3. Install SSMS

  1. Click to run [SSMS-Setup-CHS.exe]

  2. Change installation path

image-20230908114529431

  1. Click Install and wait for the installation to complete
  2. After the installation is complete, find and open [SQL Server Management Studio Management Studio 19] in the start menu bar

image-20230908115034691

  1. The login interface defaults to connecting to the local database with the current Windows account. You can directly click OK here.
  2. The successful login interface is as shown below

image-20230908115349126

Guess you like

Origin blog.csdn.net/qq_61228493/article/details/132791306