I want to import a table of customer information to my database. The structure of the data file (plain text) is briefly shown below.
"Cust_ID Cust_Name Level"
"0001 Eric Cartman 05"
"0002 Kyle Broflovski 02"
Each line enclosed by "
is a record, and the delimiter is a tab. So in my SQL Loader control file, I'll write something like this:
FIELDS TERMINATED BY ' '
(Cust_ID, --?????
Cust_Name,
Level TERMINATED BY '"' )
I'd like to tell SQL loader to ignore the "
before each Cust_ID
. What should I add here? Thank you.