Oracle External Table .
You can use the local installation of Oracle -
Oracle Database Express Edition 11g Release 2 ( Download )
This may require more work than other tools, but the data processing capabilities are endless.
create directory c_temp as 'c:\Temp';
create table myfile (c1 int,c2 int,c3 int)
organization external (type oracle_loader default directory c_temp location ('myfile.csv'));
select * from myfile;
source
share