Hi
In my procedure
1) I fetch more or less 400 000 records with a bulk collect (limit 20 000)
2) forall insert for each 20 000 records
My question is : I get more performance with FORALL INSERT or using INSERT INTO TABLE ..SELECT * FROM TABLE(collection_name) ?
NB: collection is a table of an object type
Stefano