In SSIS I need to process a tab delimited flat file with records of varying length.
I'm using a Script Component to redefine the fields but I need to use a TAB to as the column delimiter, I've used the following for comma seperated file in the past:
columnDelimiter() As Char = CType(",", Char())
I can't just replace "," with Chr(9).
Anybody ideas would be greatly appreciated.