Hi
I have a flat file that i parse. it contains columns separated by "|" and for 3 columns I have such format for numbers:
| 1 062,000-| 2 289,67-| 1 274,400-|
--> 1000th separatod : SPACE
--> negative : at the end
--> decimal separator: ,
In order to code that I used:
- FORMAT: ### ###.###;### ###.###-
- GROUPEMENT : <SPACE>
- DECIMAL: ,
The previsualisation looks fine (all numbers are OK) 1 062- 2 289,67- 1 274,4- but inserting those values with "TABLE OUTPUT" (into MS SQL) I get following error:
Error inserting/updating row - Data truncation
I guess the issue is that MS SQL does not like the "space" as group delimiters.
Could youi please so kind and explain me how to resolve such issue?
Thanks


Reply With Quote