Hi Team,
If it possible to split single column to multiple columns using SSIS package please help one same.
For example:
Input data:
historyId | remarks |
197 | OldBalanceAmount: 916.4413 || OldHoldAmount: 0.0000 || oldFundAmount: 0.0000 || oldTemporaryAmount 0.0000 ||NewBalanceAmount: 916.4413 || NewHoldAmount: 0.0000 || NewFundAmount: 0.0000 || NewTemporaryAmount 15000.0000 |
Out Put:
historyId | OldBalanceAmount | OldHoldAmount | oldFundAmount | oldTemporaryAmount | NewBalanceAmount | NewHoldAmount | NewFundAmount | NewTemporaryAmount |
197 | 916.4413 | 0 | 0 | 0 | 916.4413 | 0 | 0 | 15000 |
Thanks Bala Narasimha