SSIS Convert Between Unicode and Non-Unicode Error

后端 未结 8 1826
别跟我提以往
别跟我提以往 2020-12-24 04:52

I have an ssis package where I am using an OLEDB source linking to SQL Server 2005 table. All columns except a date column are NVARCHAR(255). I am using an Excel destination

8条回答
  •  时光说笑
    2020-12-24 05:05

    Below Steps worked for me:

    1). right click on source task.

    2). click on "Show Advanced editor". advanced edit option for source task in ssis

    3). Go to "Input and Output Properties" tab.

    4). select the output column for which you are getting the error.

    5). Its data type will be "String[DT_STR]".

    6). Change that data type to "Unicode String[DT_WSTR]". Changing the data type to unicode string

    7). save and close. Hope this helps!

提交回复
热议问题