Re: How do I convice postgres to use an index? - Mailing list pgsql-sql

From SZUCS Gábor
Subject Re: How do I convice postgres to use an index?
Date
Msg-id 00d701c46a78$1d675eb0$0403a8c0@fejleszt4
Whole thread Raw
In response to How do I convice postgres to use an index?  (Vic Ricker <vic@ricker.us>)
Responses Re: How do I convice postgres to use an index?  (Achilleus Mantzios <achill@matrix.gatewaynet.com>)
List 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@ricker.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.



pgsql-sql by date:

Previous
From: Christopher Browne
Date:
Subject: Re: Secure DB Systems - How to
Next
From: Achilleus Mantzios
Date:
Subject: Re: How do I convice postgres to use an index?