Raj-1120270
SSC Veteran
Points: 281
More actions
July 29, 2009 at 1:12 pm
#134633
Hi,
i am new for this ssis
I have data like this
COL1(flat file)
0222
9444
4566
33333
a1234
b3456
c5678
I want to remove whatever first char (a1234 - 1234,b3456-3456 ,c5678-5678)columns using SSIS derived column...
pls help me out for this.
COZYROC
One Orange Chip
Points: 28499
July 30, 2009 at 6:08 am
#1032321
Try this:
( ( CODEPOINT( [COL1] ) >= 65 && CODEPOINT( [COL1] ) = 97 && CODEPOINT( [COL1] ) <= 122 ) ) ? SUBSTRING( [COL1], 2, LEN( [COL1] ) - 1 ) : [COL1]
---SSIS Tasks Components Scripts Services | http://www.cozyroc.com/
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply