From: | Jaime Casanova <systemguards(at)gmail(dot)com> |
---|---|
To: | Nicolas Recabarren <nrecabarren(at)adexus(dot)cl> |
Cc: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: ERROR: fmrg_info:Function 16556: cache lookup filed |
Date: | 2005-07-27 17:31:15 |
Message-ID: | c2d9e70e05072710316b1d5637@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
On 7/27/05, Nicolas Recabarren <nrecabarren(at)adexus(dot)cl> wrote:
>
> Señores
>
> Hace un tiempo que tengo el siguiente problema, y no he podido darle
> solucion, algunas de las personas amablemente me han ayudado mucho y creo
> que al fin podria salir humo blanco.
>
> dentro de una tabla tengo algunos trigger
>
>
> sourceforge=# \d artifact_group_list;
> > Table "artifact_group_list"
> > Column | Type | Modifiers
> >
> >
> ---------------------+---------+------------------------------------------------
>
> > ---------------------
> > group_artifact_id | integer | not null default
> > nextval('"artifact_grou_group_
> > artifac_seq"'::text)
> > group_id | integer | not null
> > name | text |
> > description | text |
> > is_public | integer | not null default 0
> > allow_anon | integer | not null default 0
> > email_all_updates | integer | not null default 0
> > email_address | text | not null
> > due_period | integer | not null default 2592000
> > use_resolution | integer | not null default 0
> > submit_instructions | text |
> > browse_instructions | text |
> > datatype | integer | not null default 0
> > status_timeout | integer |
> > Indexes: artgrouplist_groupid,
> > artgrouplist_groupid_public
> > Primary key: artifact_group_list_pkey
> > Triggers: RI_ConstraintTrigger_47392900,
> > RI_ConstraintTrigger_47392902,
> > RI_ConstraintTrigger_47392904,
> > RI_ConstraintTrigger_47392906,
> > RI_ConstraintTrigger_47392908,
> > RI_ConstraintTrigger_47392910,
> > RI_ConstraintTrigger_47392912,
> > RI_ConstraintTrigger_47392914,
> > RI_ConstraintTrigger_47392916,
> > artifactgrouplist_insert_trig
>
> mi problema es el siguiente, al intentar hacer in INSERT INTO a la tabla
> ARTIFACT_GROUP_LIST, el sistema me arroja el Siguiente error
>
> fmrg_info:Function 16556: cache lookup filed
>
> Ahora despues de una serie de chequeos Guiados por Alvaro, no pudimos saber
> bien cual era el problema.
> En un intento desesperado por saber que pasaba, borre el trigger ultimo
> artifactgrouplist_insert_trig, intente insertar datos en la tabla y me dejo
> sin ningun problema.
>
> lo cual me dice sin ninguna duda que en lo que esta haciendo este trigger
> esta el problema.
>
> la sintaxis de este es la siguiente:
>
> CREATE TRIGGER "artifactgrouplist_insert_trig" AFTER INSERT ON
> "artifact_group_list" FOR EACH ROW EXECUTE PROCEDURE
> "artifactgrouplist_insert_agg"()
>
> Ahora para solucionar el problema tengo que recrear este trigger, yo ya lo
> elimine y lo cree nuevamente y el resultado fue el mismo, ahora, como veo
> "artifactgrouplist_insert_agg".
>
>
Revisa si la funcion artifactgrouplist_insert_agg estas usando tablas
temporales... por alli podria ir la cosa..
--
Atentamente,
Jaime Casanova
(DBA: DataBase Aniquilator ;)
From | Date | Subject | |
---|---|---|---|
Next Message | Fabio C. Bon | 2005-07-27 17:57:11 | RE: Checkpoints en postgres 8.0 |
Previous Message | Jaime Casanova | 2005-07-27 16:55:27 | Re: rowid |