SQLServerException: String or binary data will be truncated

the reason:

The length of the imported data field> the field length defined by the data table, causing overflow

Solution:

Increase the length of the field, such as the field type is defined as varchar (max) or text

Guess you like

Origin blog.csdn.net/qq_36636312/article/details/109225033