Welcome to your first true “DBA-grade” deliverable. In real DBA work, the people who get hired and trusted are the ones
who can build systems repeatably, predictably, and with evidence.
This lab turns everything you’ve done in Section 5 into a reusable checklist you can follow anytime you rebuild your lab,
and a checklist you can show in interviews as proof that you understand professional installation discipline.
Lab description: You will create a clean install checklist (copy/paste ready) that covers:
virtualization choices, OS installation and hardening, SQL Server edition and feature selection,
service account decisions, SSMS/tooling installation, and file location separation.
You will also add “validation steps” (evidence queries + file checks) and a short “rollback / recovery” section.
When you finish, you will have a single document you can reuse for every future build.
Create this file on your VM:
C:\DBA\Docs\Clean-Install-Checklist-SQL-Server-Lab.html
Copy the checklist below into that file. Then, as you complete each step, mark it as done and attach proof outputs.
Evidence (save output to C:\DBA\Logs\sql-install-proof.txt):
SELECT
@@SERVERNAME AS ServerName,
@@VERSION AS VersionInfo,
SERVERPROPERTY('Edition') AS Edition,
SERVERPROPERTY('ProductVersion') AS ProductVersion,
SERVERPROPERTY('ProductLevel') AS ProductLevel;
Evidence (save output to C:\DBA\Logs\first-connection.txt):
SELECT @@SERVERNAME AS ServerName, @@VERSION AS VersionInfo, SUSER_SNAME() AS ConnectedAs, DB_NAME() AS CurrentDatabase;
Evidence (save output to C:\DBA\Logs\file-path-validation.txt):
SELECT
SERVERPROPERTY('InstanceDefaultDataPath') AS InstanceDefaultDataPath,
SERVERPROPERTY('InstanceDefaultLogPath') AS InstanceDefaultLogPath;
To complete this lab professionally, do the following:
C:\DBA\Docs\Clean-Install-Checklist-SQL-Server-Lab.htmlC:\DBA\Logs\sql-install-proof.txtC:\DBA\Logs\first-connection.txtC:\DBA\Logs\file-path-validation.txtNext, you will move beyond installation into how SQL Server works internally and how DBAs configure it to prevent outages.
Your lab environment is now “DBA-grade” and ready for real administration, troubleshooting, and tuning work.
Not a member yet? Register now
Are you a member? Login now