In derived column transformation, you could use expression like this
REPLACE(REPLACE(REPLACE( REPLACE( [ColumnName] , "(", "") , "-", ""), ")", ""), " ", "")
Please don't forget to Accept Answer and Up-vote if the response helped -- Vaibhav
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
I have a SSIS report that imports excel files into SQL database. Sometimes users put these characters in the Phone number columns -, 9, 0, +
Can someone help me remove these in SSIS workflow. I'm hoping there is some type of find and replace where I can replace characters with blank.
Any help would be greatly appreciated.
Thanks,
Tim
In derived column transformation, you could use expression like this
REPLACE(REPLACE(REPLACE( REPLACE( [ColumnName] , "(", "") , "-", ""), ")", ""), " ", "")
Please don't forget to Accept Answer and Up-vote if the response helped -- Vaibhav