hmm...
dynamic array means that it can expand according to the to number of records going to insert.
in varray, i normally do this:
type Record_type is varray(50) of varchar2(500);
Record_varray Record_type := Record_type();
as u notice i have to declare the size of the varray.
is there any...