This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.
Hi,
I want to parse the following illegal xml character which is '・�' in the following string using ssis.
abc_信託勘定元帳・�
After parsing I should get the following string
abc_信託勘定元帳
Any help would be highly appreciated.
Thanks
・� looks like comprised of two chars ・ and �
You must be fine using this SSIS expression in Derived Column Transformation:
REPLACE([Column1],"・�","")
Arthur My Blog