Using RegEx in SSIS -
i have package pulling data excel file, when pulling data out rows not want. need extract 'id' field has sort of letter in it.
i need able run regex command such "%[a-za-z]%" pull out data. current limitation of conditional split it's not letting me that. ideas on how can done?
at core of logic, use script transformation that's place can access regex.
you second column data flow, idcleaned , column contain cleaned values or null. use conditional split filter rows vs bad. system.text.regularexpressions.regex.replace error in c# ssis
if don't want add column, can set current id column readwrite script , update in place. perhaps adding boolean column might make conditional split logic easier @ point.
Comments
Post a Comment