Welcome back. SQL Server is installed, but you cannot work like a DBA until you have the right tools.
In real production environments, the difference between an entry-level learner and a job-ready DBA is often:
tooling discipline—knowing what to use, when to use it, and how to capture evidence.
In this lesson, you will install SQL Server Management Studio (SSMS) and build a small, professional toolkit
that supports administration, troubleshooting, scripting, and documentation.
Lesson description: You will install SSMS (the primary DBA GUI tool),
confirm you can connect to your SQL Server instance,
configure SSMS settings that improve speed and reduce mistakes,
and install essential supporting tools: Azure Data Studio (optional but useful),
PowerShell readiness, Git basics for script versioning,
and a “DBA tools folder” structure for installers, scripts, outputs, and evidence.
You will finish by running a standard “first connection” checklist and saving proof of your setup.
A DBA’s tools are not just “apps.” They are part of your operational workflow:
Your lab should reflect those habits from day one.
Use Microsoft’s SSMS installer (recommended).
Download it from Microsoft’s official site inside your VM.
Save the installer to:
C:\DBA\Installers\
Open SSMS once to confirm it launches correctly and completes any first-run configuration.
If you installed a default instance, your server name is usually your machine name:
SQLLAB01 (or whatever you named it).
If you installed a named instance, it will look like:
SQLLAB01\INSTANCENAME
sa only if you enabled Mixed Mode (and only when needed)SELECT
@@SERVERNAME AS ServerName,
@@VERSION AS VersionInfo,
SUSER_SNAME() AS ConnectedAs,
DB_NAME() AS CurrentDatabase;
What success looks like: You see server name, version info, your login identity, and database context.
Line numbers make troubleshooting faster (especially when error messages reference line numbers).
You will use execution plans heavily in performance tuning sections.
For now, know where it is:
Query → Include Actual Execution Plan
DBAs do not run destructive commands casually.
Build this habit now:
SELECT DB_NAME();SELECT first before UPDATE/DELETEAzure Data Studio is excellent for:
DBA note: SSMS is still the main DBA tool for Windows-based SQL Server administration.
Azure Data Studio is a strong secondary tool.
PowerShell is essential for DBAs because it supports automation and repeatable scripts.
You do not need to become a PowerShell expert yet—but you must be comfortable running basic commands.
Confirm PowerShell launches and you can run a simple command:
$PSVersionTable.PSVersion
DBAs store scripts like assets: versioned, organized, and reusable.
You can use Git to track changes to your scripts and notes.
If you do not want Git yet, you can still follow the folder discipline.
Recommended folder:
C:\DBA\Scripts\
Optional Git initialization (only if you already know Git):
cd C:\DBA\Scripts git init
DBA principle: Your scripts should be treated like production code: documented and trackable.
In real DBA work, you often must prove what you saw and what you did.
Build the habit now:
C:\DBA\Logs\C:\DBA\Docs\DBA advantage: Evidence makes you reliable and protects you when someone asks “how do you know?”
C:\DBA\Logs\first-connection.txtC:\DBA\.Next, you will configure SQL Server default file locations for data, log, tempdb, and backups.
This is one of the highest-impact configuration habits DBAs use to prevent performance problems later.
Not a member yet? Register now
Are you a member? Login now