Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Local Language Pipe Delimited File Issues

user518071Feb 1 2010 — edited Feb 1 2010
Hi,
I'm getting pipe delimited files from various sources.Some files are in local languages and some are in english.
While loading these files with SQLLOADER,I'm getting

Record 6065: Rejected - Error on table "SCHEMA"."STAGING_TABLE", column column34.
Column not found before end of logical record (use TRAILING NULLCOLS) when I checked the flat file and compared accepted and rejected records for pipes I don't see any discrepancy

and also

for some of the records which were already inserted by sqlloader into staging table,the last column has one character length but when I check the data base it appears to be null what's the fix for this ?are there any special charactesr inserted which database can't display?

My SQLLOADER cntrol file is like this :

-- Load data into stage Party table.
OPTIONS (SKIP =1) ---- for header record
LOAD DATA
CHARACTERSET UTF8
APPEND
PRESERVE BLANKS
INTO TABLE FCPA_STG_PARTY
FIELDS TERMINATED BY '|'
(ID SEQUENCE(MAX,1),
COLUMN1 "TRIM(:COLUMN1)",
..
..


If I use "TRAILING NULLCOLS",I don't have any rejections,but data is inserted in to other columns(next columns)


Thanks,
Mahender.





..
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 1 2010
Added on Feb 1 2010
1 comment
1,736 views