Skipping data fields while loading delimited data using SQLLDR
Consider below scenario: Table T1 (f1, f2, f3); Data files: a|b|c|d w|x|y|z I want to load this data skipping the second field as follow: f1 f2 f3 --- --- --- a d c w z y Would really appreciate your help or any pointer in constructing the control file to achieve this. Define the column you want to skip as FILLER. Keep in mind the order of the columns in the control file is typically the order they are in the datafile. If the name matches a column in the table, that's where it will go. ... ( f1 CHAR, -- 1st field in the file, goes to column named f1 in the table X FILLER, -- 2nd field in the