Use it when you want to begin query optimization work without writing the first draft from scratch.
Query Execution Plan Analysis AI Prompt
Analyze this query's execution plan and identify optimization opportunities. Database: {{database}} Query: {{query}} Table sizes: {{table_sizes}} Current runtime: {{runtime}} 1.... Copy this prompt template, run it in your AI tool, and use related prompts to continue the workflow.
Analyze this query's execution plan and identify optimization opportunities.
Database: {{database}}
Query: {{query}}
Table sizes: {{table_sizes}}
Current runtime: {{runtime}}
1. Reading the EXPLAIN output (PostgreSQL):
Run: EXPLAIN (ANALYZE, BUFFERS, FORMAT TEXT) <query>;
Key nodes to identify:
- Seq Scan: reading all rows — acceptable for small tables, problematic for large ones
- Index Scan: using an index — usually good
- Index Only Scan: no heap access needed (covering index) — best case
- Hash Join / Merge Join: efficient for large joins
- Nested Loop: efficient when inner side is small or indexed; slow for large outer sets
- Sort: expensive on large datasets if no index supports the ORDER BY
- Hash Aggregate: GROUP BY without index; may spill to disk if hash table exceeds work_mem
2. Cost interpretation:
- Cost is in arbitrary units (not milliseconds)
- cost=startup..total: startup is cost to return first row; total is cost for all rows
- Rows: estimated row count (if vastly different from actual: statistics are stale → ANALYZE)
- Buffers hit=N: N pages from buffer cache (fast); Buffers read=N: N pages from disk (slow)
3. Common anti-patterns and fixes:
Seq scan on a large table:
Fix: add an index on the filter column
Bad row estimate (actual >> estimated):
Fix: ANALYZE the table; consider statistics targets: ALTER TABLE orders ALTER COLUMN status SET STATISTICS 500;
Nested Loop on large tables:
Fix: ensure join columns are indexed; consider enable_nestloop=off temporarily to force hash join
Sort without index:
Fix: add index matching the ORDER BY columns (with the same sort direction)
Function on indexed column (prevents index use):
WHERE LOWER(email) = 'test@example.com' -- cannot use index on email
Fix: use a functional index: CREATE INDEX ON users (LOWER(email));
4. Work memory for sorts and hash joins:
SET work_mem = '256MB'; -- only for the current session, for a specific expensive query
Large sorts and hash aggregates may spill to disk if work_mem is too low.
Check: 'Batches: 4' in hash join node means memory spilled to disk.
Return: annotated EXPLAIN output, identified bottlenecks, specific fixes with DDL/SQL, and expected improvement.When to use this prompt
Use it when you want a more consistent structure for AI output across projects or datasets.
Use it when you want prompt-driven work to turn into a reusable notebook or repeatable workflow later.
Use it when you want a clear next step into adjacent prompts in Query Optimization or the wider Database Engineer library.
What the AI should return
The AI should return a structured result that covers the main requested outputs, such as Reading the EXPLAIN output (PostgreSQL):, Seq Scan: reading all rows — acceptable for small tables, problematic for large ones, Index Scan: using an index — usually good. The final answer should stay clear, actionable, and easy to review inside a query optimization workflow for database engineer work.
How to use this prompt
Open your data context
Load your dataset, notebook, or working environment so the AI can operate on the actual project context.
Copy the prompt text
Use the copy button above and paste the prompt into the AI assistant or prompt input area.
Review the output critically
Check whether the result matches your data, assumptions, and desired format before moving on.
Chain into the next prompt
Once you have the first result, continue deeper with related prompts in Query Optimization.
Frequently asked questions
What does the Query Execution Plan Analysis prompt do?+
It gives you a structured query optimization starting point for database engineer work and helps you move faster without starting from a blank page.
Who is this prompt for?+
It is designed for database engineer workflows and marked as intermediate, so it works well as a guided starting point for that level of experience.
What type of prompt is this?+
Query Execution Plan Analysis is a single prompt. You can copy it as-is, adapt it, or use it as one step inside a larger workflow.
Can I use this outside MLJAR Studio?+
Yes. The prompt text works in other AI tools too, but MLJAR Studio is the best fit when you want local execution, visible Python code, and reusable notebooks.
What should I open next?+
Natural next steps from here are Deadlock and Lock Analysis, Slow Query Analysis.