From: | Alvaro Herrera <alvherre(at)commandprompt(dot)com> |
---|---|
To: | Rodolfo Villanueva <infostarsev(at)gmail(dot)com> |
Cc: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: ayuda Zeos y postgres II |
Date: | 2007-04-01 20:01:38 |
Message-ID: | 20070401200138.GB4336@alvh.no-ip.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
Rodolfo Villanueva escribió:
> Pues nada amigo he echo esto que me comentabas y mira cual es mi
> sorpresa sobre el asunto:
>
> 2007-04-01 09:39:33 LOG: statement: SELECT
> NEXTVAL('importacion_id_importacion_seq')
> 2007-04-01 09:39:33 LOG: statement: INSERT INTO IMPORTACION
> (IMPORTACION.id_importacion, IMPORTACION.orden, IMPORTACION.operacion,
> IMPORTACION.descripcion, IMPORTACION.material, IMPORTACION.tmaterial,
> IMPORTACION.puesto, IMPORTACION.centro, IMPORTACION.cantidad,
> IMPORTACION.preparaciont, IMPORTACION.tratamientot) VALUES (7,
> '101IA00006-A', 170, 'ASEGURAR ELEMENTOS', '000000000011008295',
> '95-32340-0001B01', 'MTJAVI', 'SC01', '6', '0.1', '0.0')
> 2007-04-01 09:39:33 ERROR: column "importacion" of relation
> "importacion" does not exist
> 2007-04-01 09:39:33 LOG: statement: ROLLBACK
> 2007-04-01 09:39:33 LOG: statement: BEGIN
> 2007-04-01 09:39:33 LOG: statement: SET TRANSACTION ISOLATION LEVEL
> READ COMMITTED
> 2007-04-01 09:39:46 LOG: unexpected EOF on client connection
>
> Ves algo anormal????
Claro, la lista de columnas está incorrectamente especificada. Debería
ser así:
INSERT INTO IMPORTACION
(id_importacion, orden, operacion,
descripcion, material, tmaterial,
puesto, centro, cantidad,
preparaciont, tratamientot)
VALUES (7,
'101IA00006-A', 170, 'ASEGURAR ELEMENTOS', '000000000011008295',
'95-32340-0001B01', 'MTJAVI', 'SC01', '6', '0.1', '0.0')
Por ejemplo
alvherre=# \d sencillita
Tabla «public.sencillita»
Columna | Tipo | Modificadores
---------+---------+---------------
letra | text |
numero | integer |
alvherre=# insert into sencillita (sencillita.letra) values ('a');
ERROR: no existe la columna «sencillita» en la relación «sencillita»
LINEA 1: insert into sencillita (sencillita.letra) values ('a');
^
alvherre=# insert into sencillita (letra) values ('a');
INSERT 0 1
--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
From | Date | Subject | |
---|---|---|---|
Next Message | Rodolfo Villanueva | 2007-04-01 20:09:04 | IRC |
Previous Message | Victor Lopez | 2007-04-01 19:21:04 | Re: EXECUTE en PL/pgSQL ¿? o 'como me lio' |