http://www.perlmonks.org?node_id=1005027


in reply to sql loader vs perl dbi

DBD::Oracle natively supports the execute_array method, and it is quite fast. Maybe not quite as fast as sqlldr, but it should get through 200,000 records (in batches of 1000 or so) in no time. sqlldr with direct path might be the fastest, but direct path has it's own issues that should be considered (e.g. letting you insert duplicates leaving unique constraints in a disabled state). sqlldr without direct path will be somewhere in between.

Update: Also, DBIx::BulkUtil makes sqlldr easy.