Hi,
Any idea why this expression would work on all of our old build machines, but not on our new build ones?
In a derived column transformation:
(DT_TEXT,1252)(SCD_SRC_AssuredName + "¬¬" + SCD_SRC_RowHashbytes + "¬¬" + (DT_WSTR,18)"SourceSystemID" + "¬¬" + (DT_WSTR,20)"SrcAssuredNumber")
Both of the SCD columns are also Unicode.
The error message is as follows:
Error: 0xC0047070 at DFT BordereauAssured 1:
Error: 0xC0049062 at DFT BordereauAssured 1, DERC SCD3 [111]: An error occurred while attempting to perform data conversion. The source type could not be converted to the
destination type.
Error: 0xC0209029 at DFT BordereauAssured 1, DERC SCD3 [111]: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "DERC SCD3" failed because error code
0xC0049062 occurred, and the error row disposition on "DERC SCD3.Outputs[Derived Column Output].Columns[AggregatedColumn]" specifies failure on error. An error occurred on the specified object of the specified component. There may be error
messages posted before this with more information about the failure.
Error: 0xC0047022 at DFT BordereauAssured 1, SSIS.Pipeline: SSIS Error Code DTS_E_PROCESSINPUTFAILED. The ProcessInput method on component "DERC SCD3" (111)
failed with error code 0xC0209029 while processing input "Derived Column Input" (112). The identified component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data
Flow task to stop running. There may be error messages posted before this with more information about the failure.
Futher more, the below results in the same error:
(DT_TEXT,1252)(DT_NTEXT)(SCD_SRC_AssuredName + "¬¬" + SCD_SRC_RowHashbytes + "¬¬" + (DT_WSTR,18)"SourceSystemID" + "¬¬" + (DT_WSTR,20)"SrcAssuredNumber")
Thanks for your help in advance.