Installing Microsoft SQL Server and SSMS

Download The Installer Software

Install SQL Server

Start the Installer

MSSQL Installer

Allow the Installer

MSSQL Installer

Select Yes

Select the Installation Type

Installation Type

Select Basic

Accept the License Terms

License Terms

Select Accept

Select the Install Location

MSSQL Installer

Unless you have a reason to do otherwise, accept the default location.

Select Install

Sit and Watch …

Sit and Watch

The files will be downloaded and installed.

Eventually …

Finish the Installation

Finish

There is a button to install SSMS, but you can ignore that.

Select Close

Install SQL Server Management Studio

Start the Installer

SSMS Installer

Allow the Installer

SSMS Installer

Select Yes

Accept the Licence & Install

Licence & Install

Select Install

Sit and Watch …

Sit and Watch

Finish Installation

Finish Installation

Select Close

Setup

See Microsoft SSMS - Settings for instructions on setting up SSMS

Install the Sample Database

Connect to the Database

Connect Object Explorer Connect Database

If necessary, click on the Connect Object Explorer button

  • Server Name: …\SQLEXPRESS
  • Authentication: Windows Authentication
  • ☑️ Trust Server Certificate

Create the Sample Database

Create Sample Database

Create a New Document: CtrlN
Enter the following code:

USE master;
CREATE DATABASE artworks;

Execute the code: F5

Install the Sample Database

Select Database

Open the sample-db-….sql file.

Select the new database from the toolbar menu.

Execute the code: F5