我收到以下错误 - "column "A“无法在 unicode 和非 unicode 字符串数据类型之间转换”

I am getting the following error - "column "A" cannot convert between unicode and non-unicode string data types"

我正在关注 SSIS 概述视频- https://www.youtube.com/watch?v=3cPq9FXk-RA 我有一个 excel 文件,我想从 SQL 数据库导入内容。 我创建了一个 oledb 源文件和 excel 目的地。 我收到以下错误 -

"column "A" cannot convert between Unicode and non-Unicode string data types"

请帮忙怎么办

您需要添加数据转换转换以将字符串列从非 Unicode (DT_STR) 转换为 Unicode (DT_WSTR) 字符串,因为 Excel 仅识别 Unicode。

您需要对所有字符串列执行此操作。