Skip to content

codehub-learn/MS-SQL-Server-

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 

Repository files navigation

MS-SQL-Server

MS-SQL Server Installation and Tools

How to install MS-SQL

First method

  1. Install SQL Server 2019 from https://www.microsoft.com/en-us/sql-server/sql-server-downloads
  • Scroll and find to download the Developer edition (SQL2019-SSEI-Dev.exe)
  • Run the file SQL2019-SSEI-Dev.exe
  • Select the Basic installation type, accept the license agreement
  • After checking your computer, make full installation, select all options, and proceed using default settings
  • If asked, add current user in all cases
  • Choose mixed mode authentication using the password: passw0rd
  1. Install SQL Server Management Studio, SSMS

Download SQL Server Management Studio (SSMS) from the link below https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver15

Second method (using Docker)

  1. SQL Server (Docker image)
docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=admin!@#123" -p 1433:1433 --name sql1 -d mcr.microsoft.com/mssql/server:2019-latest
  • A new SQL Server instance will be created, and you can access it using SQL Server Management Studio by using: Server name: localhost Authentication: SQL Server authentication Username: sa Password: admin!@#123

Demo databases

Demo databases can be downloaded from https://docs.microsoft.com/en-us/sql/samples/adventureworks-install-configure?view=sql-server-ver15&tabs=ssms. Download the files AdventureWorks2017.bak and AdventureWorksDW2012.bak. Do not install these files, just keep them in an accessible location. These two files will be used during the course.

About

MS-SQL Server Installation and Tools

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published