Hello all,
I have a flat file and i am loading the data to sql server table. The Flat File records are separated by Pipe Delimiter (|). In My case a particular column data have Pipe Delimeter which needs to be replaced with some other wildcard.since the ssis is splitting the data into two columns. Example scenario is below
Flat File :
Code | Flag | Name
001|T|AAA
002|T|BBB
003|T|CC|C
In the above case i need to change CC|C to CC/C or something like CC!C, so i can load within the same column.
as of now we cannot implement text qualifier.
Can anyone please let me know is there a way to achieve this in SSIS.
Thank You