From: | Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com> |
---|---|
To: | Mihai Gheorghiu <tanethq(at)earthlink(dot)net> |
Cc: | <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Surprise :-( |
Date: | 2002-09-05 22:51:44 |
Message-ID: | 20020905155024.B72711-100000@megazone23.bigpanda.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Thu, 5 Sep 2002, Mihai Gheorghiu wrote:
>
> explain select account, sum(amount) from tbas_transactions where isposted
> and trxtype = 'MP' group by account;
> psql:xx.txt:1: NOTICE: QUERY PLAN:
>
> Aggregate (cost=10874.64..10889.76 rows=302 width=24)
> -> Group (cost=10874.64..10882.20 rows=3025 width=24)
> -> Sort (cost=10874.64..10874.64 rows=3025 width=24)
> -> Index Scan using trx_trxtype_idx on tbas_transactions
> (cost=0.00..10699.78 rows=3025 width=24)
>
> EXPLAIN
>
> Sorry, I do not have an explain from before vacuum analyze.
> The table has ~700k rows and indices on account, trxtype and a few other
> fields used in other queries.
If you set enable_indexscan=off; and then run explain/run the query
is it better?
For other questions, how many rows have trxtype='MP' really and what
version are you running?
From | Date | Subject | |
---|---|---|---|
Next Message | Nigel J. Andrews | 2002-09-05 23:07:03 | Re: Surprise :-( |
Previous Message | Tom Lane | 2002-09-05 22:49:44 | Re: Problem with LEFT function... |