Re: help with query!!!

From: "mdc(at)keko(dot)com(dot)ar" <mdc(at)keko(dot)com(dot)ar>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: help with query!!!
Date: 2003-04-15 13:03:46
Message-ID: 3e9c0332.9ac.16838@keko.com.ar
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

hi guys

> numeroVia | smallint | not null
> fechaHora | timestamp(3) with time zone | not null

> explain delete from "Transitos"
> where "codigoEstacion"= '02' and
> "numeroVia" = 1 and
> "fechaHora" = '2003-0403 17:34:06.92'::timestamp and
> "medioPago" = 'Efectivo' and
> "tipoTransito"= 'Normal' and
> categoria='01'

>You're casting the constant compared to fechaHora to
>timestamp, which is
>the wrong thing (timestamp != timestamp with timezone); and
>you're not
>casting the constant compared to numeroVia to smallint.
>Each of these
>type mismatches will prevent an indexscan.

ok , first thanks a lot for your responses, well
not my are doing this wrong castings, they are from ODBC
driver , my analisys was from server side, i mean, this
information is send from my aplication via ODBC to
postmaster .
For research propouses start the postmaster with debug level
3 and later ,recreate this queries with additional explain
clauses for analisis, the ::timestamp in syntax not in my
own code ok ? .
well questions i plan to change this castings , modifing the
database definition
numeroVia smallint -> to int4
fechaHora timeStamp(3) with timezone -> timeStamp(3) *

* milliseconds are very important to me, the aplication
register events at real time and millisecond are difference
into 2 events , application is multithread .

last question, is posible to make this changes whitout
download the database at all ? , the alter table ..... do
it?

Tia
MDC

pd: Sorry for my english , again ;)

---------------------------------------
Todava no navegs con Keko?
Hac click aqu: http://www.keko.com.ar

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2003-04-15 13:49:45 Re: ordering problems ...
Previous Message David Goodwin 2003-04-15 10:47:50 Re: ordering problems ...