
Work left-to-right: Overview → click the hot database → Queries → Execution Plan / Tuning Tips. Keep the Metric-in dropdown consistent (ms vs sec) so charts and tables match what you expect.
Typical Workflows
Daily Health Check (2 minutes)
- Open DBLense ? Connect ? Overview
- Set time range to "1 Day" ? Click Refresh
- Scan Database Execution Summary → check CPU % column for red highlights
- Switch to Database Execution Compare → any unusual spikes vs. yesterday?
- Run General Health Check in the Anomaly / Root Cause Detector tab
Investigating a Slow Application (5 minutes)
- Overview ? Database Execution Summary ? find the database with the highest CPU % or Total Duration
- Click the database name ? Databases page opens pre-filtered
- Sort Query Execution Summary by Avg Duration descending
- Click the worst query hash ? Queries page opens
- Check the Plan Summary scatter plot → do you see multiple plan clusters (plan regression)?
- Open Execution Plan tab ? look for Table Scans or Key Lookups with high cost
- Run Performance Tuning Tips ? get specific fix recommendations
- Copy the Enhanced Query ? test in SSMS
Post-Deployment Validation (3 minutes)
- Queries page ? select the affected database
- Open Execution Compare sub-tab
- Sort by "? Today" descending ? find queries running more or taking longer since the deployment
- Investigate any regression ? Execution Plan ? Tuning Tips
Index Optimization (5 minutes)
- Queries page ? select a database ? open Missing Indexes sub-tab
- Sort by Impact % descending ? copy the top CREATE INDEX statements
- Switch to Unused Indexes ? find indexes creating write overhead
- Cross-reference: don't create an index if a similar unused one already exists
Incident Root Cause Analysis (3 minutes)
- Overview ? Anomaly / Root Cause Detector tab
- Select the relevant symptom (e.g., High CPU Usage)
- Choose Past / Historical Issue ? set the time window to when the incident occurred
- Click Examine & Detect Root Cause
- Review findings sorted by impact ? copy root-cause SQL ? share with team