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.