2
如何在SSIS數據流任務SSIS - 從DT_STR數據轉換成int
cast(gift_amount as int)/100
在派生列轉換編輯器應用下面的轉型,我無法更改數據類型。在給予typecast
函數時,它給出0xC0049064
錯誤。
如何在SSIS數據流任務SSIS - 從DT_STR數據轉換成int
cast(gift_amount as int)/100
在派生列轉換編輯器應用下面的轉型,我無法更改數據類型。在給予typecast
函數時,它給出0xC0049064
錯誤。
可以使用一個script component
Script Component
gift_amount
作爲輸入列acieve此outColumn
)添加以下代碼:(使用vb.net)
If Not Row.giftamount_IsNull AndAlso
Not String.IsNullOrEmpty(Row.giftamount) Then
Row.outColumn = CDec(CInt(Row.giftamount)/100)
Else
Row.outColumn_IsNull = True
End If