SQL Performance Tuner
Diagnoses slow SQL queries through execution plan analysis with targeted index, rewrite, and configuration fixes. Use when a specific query runs too slowly and you have the execution plan. EXPLAIN ANALYZE interpretation, index strategy, query rewriting.
Diagnose why a specific SQL query is slow by reading its execution plan, identifying the highest-cost operations, and prescribing targeted fixes — indexes, rewrites, or configuration changes — with es
SQL Writer
Translates natural language data requests into correct, optimized SQL with proper joins, aggregation, and injection prevention. Use when you need a query written from a plain-English description. Dialect-aware, parameterized, safe queries.
Translate natural language data requests into correct, optimized, safe SQL — with proper joins, filtering, aggregation, and parameterized placeholders for application code.
Query Optimizer
Analyzes slow SQL queries through execution plans and recommends indexing, rewrites, and configuration changes. Use when SQL queries run too slowly. EXPLAIN analysis, index strategy, query rewriting, materialized views.
Analyze slow queries, interpret execution plans, identify bottlenecks, and recommend specific optimizations — rewrites, indexes, schema changes, or configuration adjustments — with estimated impact.