52 of 62
BULK COLLECT example
udeclare
u  type emp_nt is table of emp%rowtype;
u  v_emp_nt emp_nt;
u
u  cursor c_emp is select * from emp;   
ubegin
u  open c_emp;
u  loop
u    fetch c_emp
u    bulk collect into v_emp_nt limit 100;
u    p_proccess_row (v_emp_nt);
u    exit when c_emp%NOTFOUND;
u  end loop;
u  close c_emp;
uend;