Re: simple select-statement takes more than 25 sec

From: Cao Duy <cao(dot)duy(at)1und1(dot)com>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: simple select-statement takes more than 25 sec
Date: 2004-11-10 11:22:17
Message-ID: 1100085737.3980.43.camel@Knoppix
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Am Mi, den 10.11.2004 schrieb Steinar H. Gunderson um 11:17:
> On Wed, Nov 10, 2004 at 10:35:50AM +0100, Cao Duy wrote:
> > here is my simple select-statement:
> > SELECT * FROM CUSTOMER WHERE CUSTOMER_ID=5
>
> It seems like you're missing an index on customer_id. Set it to PRIMARY KEY
> or do an explicit CREATE INDEX (followed by an ANALYZE) and it should be a
> lot faster.
there is an index on customer_id

create table customer(
...
CONSTRAINT customer_pkey PRIMARY KEY (customer_id),
...
)

> /* Steinar */

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Steinar H. Gunderson 2004-11-10 11:45:25 Re: simple select-statement takes more than 25 sec
Previous Message gnari 2004-11-10 10:31:40 Re: simple select-statement takes more than 25 sec