sqlldr - Skip header in all Infiles [message #356395] |
Thu, 30 October 2008 11:03 |
Amom
Messages: 3 Registered: October 2008
|
Junior Member |
|
|
Hello everyone,
utility: sql loader
Here is my problem:I need to upload data from multiple Infiles into the database table. While doing so, I would like to suppress or skip header line of each file. Is there a similar function to 'skip' or any other way to ignore header from every infile.
Here is my control file:
LOAD DATA
INFILE file1.CSV
......
INFILE file[n].CSV
REPLACE
INTO TABLE CSV_IMPORT
FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"'
( a, b, c)
Thanks a lot
[Updated on: Thu, 30 October 2008 11:05] Report message to a moderator
|
|
|
|
|
|
|