I want to know how to pass large data to Oracle PL/SQL procedure from a Java class. I am having around 1,500,000 records in file and I want to save it in the database.
Currently I am parsing the file making the collection and sending the ARRAY to the PL/SQL procedure but while making the Oracle ARRAY I am getting the OutOfMemoryError: Java heap size
exception.
Kindly suggest how to get rid of this situation.