From: | "ricardo yanguma" <ricardo(dot)yanguma(at)gmail(dot)com> |
---|---|
To: | "Mario Gonzalez ( mario__ )" <gonzalemario(at)gmail(dot)com> |
Cc: | Postgres Español <pgsql-es-ayuda(at)postgresql(dot)org> |
Subject: | Re: servidor |
Date: | 2006-10-12 17:17:12 |
Message-ID: | fbe285730610121017y2d797a6t448b7b97c4139a73@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
esta es la consulta
explain update nr_tmp_carga set nr_codest=1
where nr_tmp_carga.nr_codsubs between 1 and 1
and nr_tmp_carga.nr_codran between 1 and 1
and nr_tmp_carga.nr_codfac between 1 and 1
y este es el resultado
Seq Scan on nr_tmp_carga (cost=0.00..16004.88 rows=1 width=831)
Filter: ((nr_codsubs >= 1) AND (nr_codsubs <= 1) AND (nr_codran >= 1) AND
(nr_codran <= 1) AND (nr_codfac >= 1) AND (nr_codfac <= 1))
On 10/12/06, Mario Gonzalez ( mario__ ) <gonzalemario(at)gmail(dot)com> wrote:
>
> On 12/10/06, ricardo yanguma <ricardo(dot)yanguma(at)gmail(dot)com> wrote:
> > Por favor alguien me explica como interpreto el explain select
> >
>
> Lo que te habia dicho en privado es que nos mandaras el plan que
> hace postgres al ejecutar tu query, lo que necesitamos es esa salida.
> Por ejemplo:
>
> test=> CREATE TABLE test (fecha timestamp);
> CREATE TABLE
> test=> INSERT INTO test VALUES (now());
> INSERT 0 1
> test=> INSERT INTO test VALUES (now());
> INSERT 0 1
>
>
> #Lo que necesitamos es esto..
> test=> EXPLAIN SELECT * from test;
> QUERY PLAN
> --------------------------------------------------------
> Seq Scan on test (cost=0.00..29.40 rows=1940 width=8)
> (1 fila)
>
> Entonces reemplazas el 'SELECT * from test;' por tu consulta y pegas
> al mail esa salida.
>
> >
>
> --
> http://www.advogato.org/person/mgonzalez/
>
From | Date | Subject | |
---|---|---|---|
Next Message | Alvaro Herrera | 2006-10-12 17:23:53 | Re: servidor |
Previous Message | Mario Gonzalez ( mario__ ) | 2006-10-12 17:08:21 | Re: servidor |