Re: SELECT TAKES A LOOOONG TIME - Mailing list pgsql-hackers

From pgsql@mohawksoft.com
Subject Re: SELECT TAKES A LOOOONG TIME
Date
Msg-id 4734.68.162.220.216.1055344897.squirrel@mail.mohawksoft.com
Whole thread Raw
In response to SELECT TAKES A LOOOONG TIME  ("Maksim Likharev" <mlikharev@aurigin.com>)
List pgsql-hackers
> Hi,
> could somebody explain me please why following select
> SELECT docid FROM prod.guids 
>     GROUP BY docid HAVING( COUNT(docid) > 1 )
> 
> taking 15 min on 2 Proc Box on 1M rows, where number of duplicates
> around 300K,
> and docid indexed and not null and char(16).
> 
> May be I am doing something wrong?
> Thank you.

I would first perform an "explain" on the query to have the database show
you where it is spending its time.

Second, you are performing a full table scan. Try this:

select count(docid) from prod.guids

See how long that takes, that's about as fast as your system will handle
that query. If that query is fast, you may need to play with the tuning
parameters of PostgreSQL like "sort memory." Have you adjusted any
parameters in your postgresql.conf file?



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Anonymous CVS *is* up again
Next
From: Hans-Jürgen Schönig
Date:
Subject: Pre-allocation of shared memory ...