ssis批量插入任务报错
Bulk Insert Task Error in ssis
虽然 运行 ssis 批量插入我得到以下错误。
An error occurred with the following error message: "Cannot fetch a row from OLE DB provider "BULK" for linked server "(null)".The OLE DB provider "BULK" for linked server "(null)" reported an error. The provider did not give any information about the error.The bulk load failed. The column is too long in the data file for row 1, column 1. Verify that the field terminator and row terminator are specified correctly.".
为了解决这个问题,我将连接超时更改为 0
和 5
。那没有用。
我还查看了第 1 行第 1 列的数据。
"In order to avoid these kinds of issues, I always import all fields as varchar fields into a staging table, then convert them into the data type required. You will have much more control."
您可以从以下link获得更多详细信息:
虽然 运行 ssis 批量插入我得到以下错误。
An error occurred with the following error message: "Cannot fetch a row from OLE DB provider "BULK" for linked server "(null)".The OLE DB provider "BULK" for linked server "(null)" reported an error. The provider did not give any information about the error.The bulk load failed. The column is too long in the data file for row 1, column 1. Verify that the field terminator and row terminator are specified correctly.".
为了解决这个问题,我将连接超时更改为 0
和 5
。那没有用。
我还查看了第 1 行第 1 列的数据。
"In order to avoid these kinds of issues, I always import all fields as varchar fields into a staging table, then convert them into the data type required. You will have much more control."
您可以从以下link获得更多详细信息: