Page 1 of 1

Conversion from Double to Integer

Posted: Mon Oct 29, 2007 12:26 pm
by vbeeram
Hi All,

I have this senario where i need to convert a filed(10) of type double to filed(10) of type integer . i 'm trying to use a modify stage for it . can modify stage support this if so wht is the function to convert double to integer

Thanks

Posted: Mon Oct 29, 2007 12:42 pm
by DSguru2B
No special conversion is required, as far as I know. The conversion is done by default. Just specify the following in modify stage

Code: Select all

old_columnName = new_columnName
Make sure the new column data type is set to integer.