Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Process use when you need to work with database indexing. This skill provides index design and optimization with comprehensive guidance and automation. Trigger with phrases like "create indexes", "optimize indexes", or "improve query performance".
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 43% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 87% | 0% |
| case-06 | ✓→✓ | = Same ✓ | 14% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 202% | 0% |
| case-04 | ✓→✓ | = Same ✓ | 111% | 0% |
Analyze database index usage, identify missing indexes causing sequential scans, detect redundant or unused indexes wasting write performance, and recommend optimal index configurations for PostgreSQL and MySQL.
pg_stat_user_indexes, pg_stat_user_tables, and pg_stat_statements (PostgreSQL) or performance_schema and sys schema (MySQL)pg_stat_statements extension enabled for PostgreSQL query statisticspsql or mysql CLI for executing analysis queriespg_stat_reset()SELECT relname, seq_scan, seq_tup_read, idx_scan, n_live_tup FROM pg_stat_user_tables WHERE seq_scan > 100 AND n_live_tup > 10000 ORDER BY seq_tup_read DESC LIMIT 20seq_scan count and high seq_tup_read relative to n_live_tup is scanning most of the table repeatedlypg_stat_statements:SELECT query, calls, mean_exec_time, rows FROM pg_stat_statements WHERE query ILIKE '%table_name%' ORDER BY mean_exec_time DESC LIMIT 10EXPLAIN (ANALYZE, BUFFERS) on the top queries to confirm sequential scan usageSELECT column_name, n_distinct, correlation FROM pg_stats WHERE tablename = 'target_table'n_distinct (close to row count) indicates good index selectivitycorrelation close to 1.0 or -1.0 suggests the column benefits from a B-tree index= operators first in the index>, <, BETWEEN, or LIKE 'prefix%' lastWHERE status = 'active' AND created_at > '2024-01-01' -> CREATE INDEX ON orders (status, created_at)SELECT indexrelname, idx_scan, pg_size_pretty(pg_relation_size(indexrelid)) AS index_size FROM pg_stat_user_indexes WHERE idx_scan = 0 AND indexrelname NOT LIKE '%pkey' ORDER BY pg_relation_size(indexrelid) DESC(customer_id) is redundant if a composite index on (customer_id, created_at) exists, because the composite index serves both single-column and multi-column queriesWHERE status = 'active':CREATE INDEX idx_orders_active ON orders (created_at) WHERE status = 'active'CREATE INDEX idx_orders_covering ON orders (customer_id, created_at) INCLUDE (total_amount, status)SELECT pg_size_pretty(pg_relation_size('index_name')) for existing similar indexes| Error | Cause | Solution | |-------|-------|---------| | pg_stat_statements not available | Extension not installed | CREATE EXTENSION pg_stat_statements and add to shared_preload_libraries | | Index creation blocks writes | CREATE INDEX acquires exclusive lock on the table | Use CREATE INDEX CONCURRENTLY which does not block writes (takes longer but safe for production) | | Index not used after creation | Statistics not updated or query planner choosing sequential scan | Run ANALYZE table_name; check random_page_cost setting (reduce to 1.1 for SSD); verify query uses indexed columns without functions | | Statistics reset unexpectedly | pg_stat_reset() called or database restart cleared stats | Wait 24-48 hours for statistics to accumulate; set up periodic stats collection to a metrics table | | Too many indexes on write-heavy table | Each INSERT/UPDATE must update all indexes | Target 5-7 indexes per table maximum; use composite indexes to replace multiple single-column indexes; remove unused indexes |
Identifying a missing composite index for an API endpoint: The /orders?customer_id=123&status=active endpoint takes 2 seconds. Analysis shows the orders table (5M rows) has indexes on (id) and (customer_id) but not (customer_id, status). The query filters on both columns. Adding CREATE INDEX CONCURRENTLY idx_orders_customer_status ON orders (customer_id, status) reduces the query to 5ms.
Cleaning up 8 unused indexes saving 12GB: Index usage analysis reveals 8 indexes with zero scans over 30 days, totaling 12GB of storage. After confirming none are used for FK enforcement or unique constraints, dropping them reduces write latency by 18% and frees disk space. Command: DROP INDEX CONCURRENTLY idx_name.
Replacing 3 single-column indexes with 1 composite covering index: Table has separate indexes on (user_id), (created_at), and (status). Most queries filter on all three. A single composite index (user_id, status, created_at) INCLUDE (amount) replaces all three, reduces total index storage by 40%, and enables index-only scans for the dashboard query.
Other measured skills in the registry, with their headline benchmark lift.