Read-only. Runs entirely in your environment. Nothing is sent anywhere.
This tool is free and open. Read every script before you run it. We want you to. MIT License (see the LICENSE file in this package).
This package runs a read-only diagnostic scan of your SQL Server and generates a health report that opens in your browser. It installs nothing on your server, writes nothing to your databases, and sends no data anywhere. The whole run takes 15 to 60 minutes depending on the size of your environment.
Grant-RitzyAuditAccess.sql to create one -- it is the least-privilege account we recommend, and you can read exactly what access it grants. Sysadmin is never required.| Your environment | Instance name looks like |
|---|---|
| Default instance | PROD-SQL01 |
| Named instance | PROD-SQL01\SQLEXPRESS |
| AWS RDS endpoint | mydb.us-east-1.rds.amazonaws.com,1433 |
Right-click the zip and choose Extract All. Pick a folder you can find easily, for example C:\Temp\Punchlist\.
Press the Windows key + R, type cmd, press Enter. In the black window, go to your folder:
cd C:\Temp\Punchlist
Use Command Prompt, not PowerShell, for this step.
Replace PROD-SQL01 with your instance name:
Collect.bat -SqlInstance "PROD-SQL01" -AllDatabases
Using SQL authentication (for example AWS RDS):
Collect.bat -SqlInstance "mydb.us-east-1.rds.amazonaws.com,1433" ^
-SqlUsername "RitzyAudit" ^
-AllDatabases
You will be prompted securely for the password, so it never appears in your command
line or console history. This is the recommended SQL-auth method. RitzyAudit
is the least-privilege login created by Grant-RitzyAuditAccess.sql.
Your report opens automatically in your browser. It shows a preliminary health grade, your top findings by severity, and the estimated annual cost of inaction.
To share it with your team, press Ctrl+P (Cmd+P on Mac) and choose "Save as PDF." The report is designed to print to a clean, distributable document.
Next to your report, the run writes results_anonymized.json: a small summary
built only from finding keys, severities, counts, and cost estimates. It contains no server,
database, or object names -- open it and check.
If you want to see how your environment stacks up against others, upload it at ritzyai.co/score and you will get a benchmark grade by email. Uploading is optional; the tool is fully useful without it. Questions? Email mani@ritzyai.co.
Full details, troubleshooting, and the complete list of what each script
collects are in README.md in this package.