How to check if value in field is decimal and not string (DATASTAGE) ? I am using with Datastage Version 8.
如何检查字段中的值是否为十进制而不是字符串(DATASTAGE)?我正在使用Datastage Version 8。
1 个解决方案
#1
Try using IsValid()
with the 'decimal' sub-type on the incoming string.
尝试在传入字符串上使用带有'decimal'子类型的IsValid()。
If IsValid("decimal" , in.value_string ) Then in.value_tring Else SetNull()
#1
Try using IsValid()
with the 'decimal' sub-type on the incoming string.
尝试在传入字符串上使用带有'decimal'子类型的IsValid()。
If IsValid("decimal" , in.value_string ) Then in.value_tring Else SetNull()