Audience
DBAs and database operations teams responsible for production slow SQL governance.Problem
Production slow SQL governance isn’t hard because of a lack of tools — it’s hard to scale:- Too many slow queries — thousands a day, many of them the same pattern with different parameters
- Slow doesn’t mean the SQL itself is wrong — it may be index bloat, data growth, lock contention, or resource contention
- Knowing it’s slow isn’t knowing how to fix it — the real cost is analyzing the cause, designing the rewrite, and judging the index
- Advice lacks validation — “add an index” is far less useful than “which index, and is it actually faster after the change”