Hi All,
I am facing issues with data file that gets parses through sql*loader utility and loads the data into one of the oracle tables.
In the data file, there are some values containing minus at the end of the value, which is not getting parsed through sql*loader control file and resulting in INVALID NUMBER error.
They are all number datatypes in the final Oracle table.
Data looks like
|||||||||||||881.02-|88.20-|2016.02||||||||||
Is their any kind of formatting that can be done at the control file level such that it reads
|||||||||||||881.02-|88.20-|2016.02||||||||||
as
|||||||||||||-881.02|-88.20|2016.02||||||||||
and loads it into the Oracle table.
Thanks.