declare
type yy is table of t12.name%type index by binary_integer;
y yy;
n number:=1;
begin
execute immediate 'create table rat1 (name varchar2(10))';
commit;
select name bulk collect into y from t12;
for i in (select id,name from t12)
loop
dbms_output.put_line(y(n));
n:=n+1;
end loop;
forall i in y.first..y.last
insert into rat1 values(y(i));
end;
其給出ora-00942
。 我檢查一下吧......在一些網站有人提的是,你必須給下面的privilages ...無法使用pl/sql創建表格
grant select on sys.v_$paramenter to abc
我無法做到這一點also..Can任何機構幫我這個
加..我不想在這裏使用任何程序或遊標的概念..... – Tarun