Re: FW: truncate error

Lists: pgsql-admin
From: Sidar López Cruz <sidarlopez(at)hotmail(dot)com>
To: pgsql-admin(at)postgresql(dot)org
Subject: truncate error
Date: 2005-10-04 14:40:31
Message-ID: BAY23-F21C21669B6CF0E33B4659ACE830@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-admin

PostgreSQL 8.1 beta 2 raise error on truncating tables with foreign keys,
try this to see !!!

_________________________________________________________________
Consigue aquí las mejores y mas recientes ofertas de trabajo en América
Latina y USA: http://latam.msn.com/empleos/


From: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
To: Sidar López Cruz <sidarlopez(at)hotmail(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: truncate error
Date: 2005-10-04 15:21:42
Message-ID: 20051004152142.GC6925@surnet.cl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-admin

On Tue, Oct 04, 2005 at 08:40:31AM -0600, Sidar López Cruz wrote:
> PostgreSQL 8.1 beta 2 raise error on truncating tables with foreign keys,
> try this to see !!!

Hum, what were you trying to show us? Truncating tables with foreign
keys is supposed to work as long as you truncate the referenced table at
the same time.

--
Alvaro Herrera Valdivia, Chile ICBM: S 39º 49' 17.7", W 73º 14' 26.8"
"La felicidad no es mañana. La felicidad es ahora"


From: Sidar López Cruz <sidarlopez(at)hotmail(dot)com>
To: pgsql-admin(at)postgresql(dot)org
Subject: FW: truncate error
Date: 2005-10-04 16:01:42
Message-ID: BAY23-F106139BBD22CF2F37A02C8CE830@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-admin

Yo primero hice truncate a la tabla derivada y luego a la tabla maestra y
PostgreSQL no me lo permitia, entonces hice DELETE sobre la tabla maestro y
si pudo borrar los registros, aun no se porque pasa eso.

>From: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
>To: Sidar López Cruz <sidarlopez(at)hotmail(dot)com>
>CC: pgsql-admin(at)postgresql(dot)org
>Subject: Re: [ADMIN] truncate error
>Date: Tue, 4 Oct 2005 11:21:42 -0400
>
>On Tue, Oct 04, 2005 at 08:40:31AM -0600, Sidar López Cruz wrote:
> > PostgreSQL 8.1 beta 2 raise error on truncating tables with foreign
>keys,
> > try this to see !!!
>
>Hum, what were you trying to show us? Truncating tables with foreign
>keys is supposed to work as long as you truncate the referenced table at
>the same time.
>
>--
>Alvaro Herrera Valdivia, Chile ICBM: S 39º 49' 17.7", W 73º 14'
>26.8"
>"La felicidad no es mañana. La felicidad es ahora"
>
>---------------------------(end of broadcast)---------------------------
>TIP 1: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly

_________________________________________________________________
MSN Amor: busca tu ½ naranja http://latam.msn.com/amor/


From: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
To: Sidar López Cruz <sidarlopez(at)hotmail(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: FW: truncate error
Date: 2005-10-04 18:34:22
Message-ID: 20051004183422.GI7732@surnet.cl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-admin

On Tue, Oct 04, 2005 at 10:01:42AM -0600, Sidar López Cruz wrote:
> Yo primero hice truncate a la tabla derivada y luego a la tabla maestra y
> PostgreSQL no me lo permitia, entonces hice DELETE sobre la tabla maestro y
> si pudo borrar los registros, aun no se porque pasa eso.

Hola, el idioma de esta lista es el inglés y por lo tanto nos debemos
restringir a usar ese idioma. Para discusiones en castellano te sugiero
la lista pgsql-es-ayuda.

Con respecto a TRUNCATE, en 8.1 se puede hacer simultáneamente a ambas
tablas:

TRUNCATE tabla_derivada, tabla_maestra;

y debería funcionar (si no funciona, es un bug, por favor reportalo).
En versiones anteriores no está permitido usar TRUNCATE en tablas que
tienen llaves foráneas, ni se permite hacer TRUNCATE en más de una
tabla simultáneamente.

--
Alvaro Herrera http://www.amazon.com/gp/registry/CTMLCN8V17R4
Essentially, you're proposing Kevlar shoes as a solution for the problem
that you want to walk around carrying a loaded gun aimed at your foot.
(Tom Lane)