Text was truncated or one or more characters had no match in the target code page
That mean either
- You try to import larger data then it fit's into the table column; means e.g. column is defined as varchar(50) and the data contains more then 50 chars
- You try to import Unicode data into a ASCII column
So check table definition and source data if they match by definition & size.