data type max length issue
Hi Guys,
I am loading a huge file using SQL Loader into an oracle table. THis table has only one Column of VARCHAR2(4000); THe incoming values have all kinds of characters in it. Some records are rejected by the loader because it exceeds the max length allowed for this column. How can i process those records as well whose max length exceeds 4000 characters?. I changed the varchar2(4000) to clob and incresed the sql loader delcaration to char(8000) but it error out showing the following error.
SQL*Loader-350: Syntax error at line 7.
Illegal combination of non-alphanumeric characters
Is there any work around to load those records as well that has more than 4000 characters?
Please help.
Thanks