Is it possible to insert into a table
using the record loaded from a cursor?


declare
cursor c_cursor is
select a,b,c from table;
begin
for c_rec in c_cursor
loop

insert into new_table (using record???)

end loop;
end;

Thanks,

Paul