Binary Id's conversion
hi all,
i have a source csv file 1 million binary id's this..
0x0000000000000002
0x0000000000000011
0x0000000000000020
now issue want avoid '0x's infront of these binary id's before loading destination csv file , need ssis logic convert these id's to..
0000000000000002
0000000000000011
0000000000000020
thanks in advance,
rh
sql
if source being read strings (dt_str or dt_wstr), need add derived column transform data flow replace([column], "0x", "") expression in it.
talk me on |
SQL Server > SQL Server Integration Services
Comments
Post a Comment