Prepared statement: java.sql.BatchUpdateException: Internal Error: oracle.j
Hi, im using a batch to insert a lot query's.
It works fine when i insert just a few records(2 000)
But now I tried to insert a little bit more (20 000), And then I get the following error:
java.sql.BatchUpdateException: Internal Error: oracle.jdbc.kprb.KprbDBStatement@44a41a86.
I guess it has something to do with the max a batch can hold.
I searched the internet for the max records a batch can hold, but i didn't find anything.
How can I solve my problem to insert 20 000 records?

