Option for Bulk insert from Java
Hi ,
I have a log table which records every stage of processing of a batch. Unfortunately this takes hell lot of time and nearly 20-25% of total time is spent on inserting records in to this table. Batch has a java call (thru DAO's -- I am not much familiar with Java) from where the record is inserted.
In order to tune this, can we have an object type and insert into it and at the end of execution use bulk insert to insert into table ??? -- Will this improve performance ? Or is there any other way out ?