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
Solution 1: Can you concatenate the 1000 files into on big file, which is then loaded by SQL*Loader. On unix, I'd use something like
cd path cat file*.csv > all_files.csv