How to Download & Install SQL Server + SSMS + Azure Data Studio


June 2026  |  12 min read  |  SQL Server, Install, Setup  |  views

SQL Server Installation Guide

A complete beginner-friendly setup guide — SQL Server Developer Edition is free and fully featured


Before you can run any T-SQL, you need a running SQL Server instance and a tool to talk to it. This guide walks you through every step: picking the right edition, installing SQL Server, configuring the server, installing SSMS (the classic Windows GUI) and Azure Data Studio (the modern cross-platform IDE), and verifying that everything works with a quick test query. Total time: ~20–30 minutes.

  Already installed? Jump straight to the SQL Server 2017 Complete Playground — 14 script files covering every T-SQL topic from CTEs to In-Memory OLTP.



 1. Choose Your SQL Server Edition


Microsoft offers several editions. For learning and development, Developer Edition is the obvious choice — it is 100% free and identical to Enterprise Edition in every feature.

EditionCostFeaturesUse case
Developer Free All Enterprise features Development & testing only (not production)
Express Free 10 GB max DB size, limited CPU/RAM Small apps, embedded, learning
Standard Paid Core RDBMS features, limited HA Departmental / mid-size workloads
Enterprise Paid Full feature set — Always On, partitioning, In-Memory OLTP Mission-critical production

 2. Download SQL Server



 3. Install SQL Server Step by Step



 4. Install SQL Server Management Studio (SSMS)


SSMS is the primary Windows GUI for SQL Server — object explorer, query editor, backup/restore wizards, job agent, security management. It is free and separate from the server itself.


 5. Install Azure Data Studio (Optional but Recommended)


Azure Data Studio (ADS) is a lightweight, modern, cross-platform IDE (Windows, macOS, Linux) built on VS Code. It adds Jupyter-style SQL notebooks, an integrated terminal, and a rich extension marketplace. Great companion to SSMS.


 6. Install sqlcmd (Command-Line Tool)


sqlcmd lets you run T-SQL from any terminal, shell script, or CI pipeline — no GUI needed. Essential for DevOps and automation.


 7. Post-Installation Configuration


A few configuration steps make your development environment significantly better. Run these in SSMS or sqlcmd right after installation.


 8. Verify the Installation


Run these queries in SSMS or sqlcmd to confirm everything is working correctly.


 9. Recommended Extensions & Tools



 10. Common Problems & Fixes



What Next?



Frequently Asked Questions


Is SQL Server Developer Edition really free?
What is the difference between SSMS and Azure Data Studio?
What is Mixed Mode Authentication?
Default instance vs named instance — which should I use?
How do I enable remote connections / TCP port 1433?

Was this guide helpful?



Continue Learning



Next Step

Server installed? Start the complete T-SQL playground with 14 script files.

SQL Server Playground →
Article Info
  • Level: Beginner
  • Time: 20–30 minutes
  • Cost: Free (Developer Edition)
  • OS: Windows 10 / 11
Stay Updated with Techoral

Get the latest SQL Server tips, install guides and T-SQL scripts delivered to your inbox.