Best way to bulk insert data into Oracle database
I am going to create a lot of data scripts such as INSERT INTO and UPDATE There will be 100,000 plus records if not 1,000,000 What is the best way to get this data into Oracle quickly? I have already found that SQL Loader is not good for this as it does not update individual rows. Thanks UPDATE: I will be writing an application to do this in C# Vincent Malgrat Load the records in a stage table via SQL*Loader . Then use bulk operations: INSERT INTO SELECT (for example "Bulk Insert into Oracle database" ) mass UPDATE ( "Oracle - Update statement with inner join" ) or a single MERGE statement To