Re: How do I convice postgres to use an index?

From: SZUCS Gábor <surrano(at)mailbox(dot)hu>
To: <pgsql-sql(at)postgresql(dot)org>
Subject: Re: How do I convice postgres to use an index?
Date: 2004-07-15 14:29:17
Message-ID: 00d701c46a78$1d675eb0$0403a8c0@fejleszt4
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Try casting the constant to the type of the field, i.e.

WHERE timestamp >= '7/12/2004'::"timestamp without time zone"

(iirc the quotes are necessary)

Also, I'd try to avoid naming attributes like (built-in) types. (iirc
"timestamp" is a type without time zone in 7.3, and with time zone in 7.4 :)
"timestamptz" is the opposite in both cases)

G.
%----------------------- cut here -----------------------%
\end

----- Original Message -----
From: "Vic Ricker" <vic(at)ricker(dot)us>
Sent: Tuesday, July 13, 2004 10:29 PM

> I apologize for the following stupid question. I have been doing some
> searching and haven't found anything really helpful.
>
> The problem is that postgres (7.4.2) keeps choosing to do a sequential
> scan on a table when an index scan would be significantly faster.
>
> The queries that I'm using look at daily statistics from events logged
> by our Checkpoint firewall and generate graphs. Since they are bit
> complicated, I simplified it to "select count(*) from log where
> timestamp>='7/12/2004'" for testing.

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Stephen Frost 2004-07-15 17:49:32 Re: 'UPDATE OR INSERT' command
Previous Message Achilleus Mantzios 2004-07-15 14:00:36 Re: How do I convice postgres to use an index?