Concept Flow - Identifying missing indexes
Run slow query
Check query plan
Look for COLLSCAN (collection scan)?
No→Index used, no missing index
Yes
Analyze query fields
Suggest index on those fields
Create index
Query runs faster
This flow shows how to find queries that do not use indexes and then create indexes to speed them up.