Internal error
527908Dec 5 2007 — edited Dec 5 2007in forms i have written cursor as
declare
cursor c1 is select name from emp;
begin
for i in c1 loop
insert into table1 values(i.name);
end loop;
end;
---i m getting following popup error PDE-PER001 Internal error (deucx 9 8)
and in form builder it displayes
ORA-06552 PL/SQL : Compilation unit analysis terminated
ORA-06553 PLS-320 the declaration of the type of this expression is incomplete or melformed.......