I am using SQL LOADER to load multiple csv file in one table. The process I found is very easy like
LOAD DATA INFILE \'/path/file1.csv\' INFILE \'/pat
Loop over the files from the shell:
#!/bin/bash for csvFile in `ls file*.csv` do ln -s $csvFile tmpFile.csv sqlldr control=file_pointing_at_tmpFile.ctl rm tmpFile.csv done