views:

30

answers:

1

Hello All,

I got a column values as '035-7448-001-3854535' In SSIS - Data Flow i need to split this into three different components as

**Col1                Col2                  Col3**
  035               7448-001               3854535

this can be done using script component.

Is there a way to deal with this in Derived Column Component

Thanks

+1  A: 

I'm sure you could do this with a combination of FINDSTRING and SUBSTRING functions, but I think a script component will ultimately yield a more readable, better documented solution.

Joe Stefanelli
Thanks Joe, as said I got this done with script component.
Nev_Rahd
Could you please mark this as the accepted answer? Thanks.
Joe Stefanelli