01/10/2008, 14:50
|
| | Fecha de Ingreso: octubre-2008
Mensajes: 6
Antigüedad: 16 años, 1 mes Puntos: 0 | |
Ayudad con el error PLS-00201 Gente tengo el siguiente error y no se el porqué:
PLS-00201: el identificador 'FETCH_STATUS' se debe declarar
OPEN cursor_niveles for
select oi_objeto, nivel, oi_objeto_padre
from tmp_bajada
order by nivel desc ;
--fetch next from cursor_niveles into oi_obj, nivel, oi_obj_padre
FETCH cursor_niveles INTO oi_obj, nivel, oi_obj_padre;
WHILE fetch_status = 0 LOOP
Gracias por su ayuda. |