How to insert data from multiple files having different columns into a table in Oracle database using SQL Loader with Single control file.
Basically ,
We have 3 CSV files
- file 1 having columns a,b,c
- file 2 having columns d,e,f
- file 3 having columns g,h,i
We need to insert the above attributes to a Table named "TableTest" having columns a,b,c ,d,e,f,g,h,i
Using single control file
Thanks in advance