0
Data from a table was exported in a CSV file and I would like to import it into a table in the Oracle database. But I need it to be without the sqlldr command. Because this load will be done in Java, and I have SQL Loader usage restrictions applied by the database team.
Consider that this CSV may hold millions of records!
I believe that the External Table option would not meet, because I am working with millions of records.
Something needs to interpret the CSV, needs to put them in an INSERT and rotate them in the bank. For example: you can make a program to do this, you can mount the Inserts in Excel and run them in SQL-Plus and so on. Given the amount of lines SQLDR would be the best option
– Reginaldo Rigo
You create Java Classes to read this file, there are websites for this in Java and PLSQL https://docs.oracle.com/javase/tutorial/essential/io/file.html
– Motta