From: | "Felipe Amezquita" <felmarla(at)gmail(dot)com> |
---|---|
To: | postgresayuda <pgsql-es-ayuda(at)postgresql(dot)org> |
Subject: | ctid |
Date: | 2007-01-09 16:15:09 |
Message-ID: | bf4cfe570701090815ib9be930x2ab9d70904a30aeb@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
estoy creando la siguiente funcion,pero entonces este me carga estos ctid
(12,5)
(12,6)
necesito hacer un delete del (12,6) entonces eso de diferente no me sirve
por que apenas estoy cargando los ctid,como mas puedo hacer.
create or replace function eliminar_ubiprograma_repetidos()
as
$body$
declare
var_dir numeric;
var_prg numeric;
cur_ubiprg refcursor;
begin
OPEN cur_ubiprg for select dir_codigo,prg_codigo,count(*) from
ubicacion_programa group by dir_codigo,prg_codigo having count(*)>1
LOOP
fetch cur_ubiprg into var_dir,var_prg;
select ctid from ubicacion_programa where prg_codigo=var_dir and
dir_codigo=var_prg
--
Ing Sistemas y Telecomunicaciones
Luis Felipe Lopez Amezquita
3008217523 - 3162589699
From | Date | Subject | |
---|---|---|---|
Next Message | Edwin Quijada | 2007-01-09 16:18:15 | Re: Like iLike y Genexus |
Previous Message | Edwin Quijada | 2007-01-09 16:07:15 | Re: Like iLike y Genexus |