I have data consisting of various numeric fields (dec 8.2).
I want to load them into an Oracle table dropping the decimal and making them char(8).
My sql loader cntrl file defines them as ;
Field1 char "to_char
field1,'99999999')"
But this does not work.
I get error ;
ORA-01401: inserted value too large for column
How do I go about this ?
I want to load them into an Oracle table dropping the decimal and making them char(8).
My sql loader cntrl file defines them as ;
Field1 char "to_char
But this does not work.
I get error ;
ORA-01401: inserted value too large for column
How do I go about this ?