我是SSIS的新手,并且继承了一个非常简单的包,它将数据从MySQL数据库导入SQL Server表(OLE DB Destination)。 MySQL开发人员给了我一个新的查询来代替当前在数据流组件(ADO.NET Source)中使用的查询,据称它提供了与以前相同的输出列。我只是将其粘贴到SqlCommand字段中代替现有查询。但是当我执行包时,我得到了五个错误:
Error: 0xC002F445 at Data Import, OLE DB Destination [202]: An error occurred while setting up a binding for the "Column1" column. The binding status was "DT_NTEXT".
Error: 0xC002F446 at Data Import, OLE DB Destination [202]: An error occurred while setting up a binding for the "Column2" column. The binding status was "DT_NTEXT". The data flow column type is "DBBINDSTATUS_UNSUPPORTEDCONVERSION". The conversion from the OLE DB type of "DBTYPE_IUNKNOWN" to the destination column type of "DBTYPE_WVARCHAR" might not be supported by this provider.
Error: 0xC002F445 at Data Import, OLE DB Destination [202]: An error occurred while setting up a binding for the "Column3" column. The binding status was "DT_TEXT".
Error: 0xC002F445 at Data Import, OLE DB Destination [202]: An error occurred while setting up a binding for the "Column4" column. The binding status was "DT_TEXT".
Error: 0xC002F445 at Data Import, OLE DB Destination [202]: An error occurred while setting up a binding for the "Column5" column. The binding status was "DT_NUMERIC".
我在SQL Server 2012 SP1中使用SSIS。请注意,ADO.NET源中的AllowImplicitStringConversion设置为True。我有MySQL开发人员给我一个CSV直接在MySQL中运行查询的结果,所以我可以看到数据实际上是什么样的。
任何人都可以就如何解决这些问题提供一些指导吗?
顺便说一下,每个错误中的 [202] 告诉我什么?
答案 0 :(得分:0)
从Excel文件(Excel源代码)导入OLE DB目标时出现类似问题,这会给我一个类似于您的错误消息。当我的Excel文件中有一列超过255个字符的列时,我的包无法处理。
我的解决方案是将列导出到文本文件并导入它。