I want to insert the rejected records in a log and to the temp table that i created . but this is my problem on codes , i'm new in creating CTL and Shell Script .
here's my code :
LOAD DATA
INFILE 'open_account .csv'
BADFILE 'open_account.bad'
DISCARDFILE 'open_account.dsc'
APPEND
INTO TABLE accountrequest_temp
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' | TRAILING NULLCOLS
(Branch,
Account_Type,
Title,
FirstName,
Lastname,
Birthday,
WorkPhone,
HomePhone,
Address,
State,
Zip,
Email,);
here's my error :
$ sqlldr hr/password, control=loaddata.ctl
SQL*Loader: Release 11.2.0.2.0 - Production on Tue Aug 17 11:20:06 2021
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
SQL*Loader-350: Syntax error at line 7.
Illegal combination of non-alphanumeric characters
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' | TRAILING NULLCO
Quite a few errors. To mention some of them:
|
) in front oftrailing nullcolls
When fixed, it works. I re-used table
accountRrequest
(with a typo in its name) we created yesterday, just renamed it. That's why my column list differs from yours a little bit.Control file:
Sample data (in the open_account.csv file):
Loading session:
Result: