Extend function in pl/sql table
733256May 1 2011 — edited May 1 2011declare
type aar_test is table of varchar2(100)
index by binary_integer;
aar_main aar_test;
begin
aar_main.extend;
aar_main(aar_main.last) :='Extend Cell';
end;
it's return a error....it is possible??? if yes how...plzzzzzzzz help me...