load multiple csv into one table by SQLLDR

前端 未结 5 1848
闹比i
闹比i 2021-01-05 03:36

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         


        
5条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-05 03:48

    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
    

提交回复
热议问题