I knew the design looked familiar. If anyone uses Solr, this does the same for its debug output
PostgreSQL's Explain Analyze Made Readable
61–62 of 62 posts
Re: PostgreSQL's Explain Analyze Made Readable
#62Earlier quoted context omitted.
That actually runs the query, so in GP's situation where it isn't returning, that won't either.
At least in my experience, things being slow is almost always due to a table scan rather than using an index. Just the estimates (ie not actually running the query) should give clues as to which table it scans, and the predicates gives hints as to which index would have helped. Not always easy fix though, sometimes what you're asking for just isn't possible to index in a nice way. Just the other day me and a colleagu…
Yes, but to identify that all you need it EXPLAIN, not EXPLAIN ANALYZE.