Data is truncating for measure column
Hi Folks, Data is truncating for measure column. for examaple: salary data in Source database as shown below : 100 200.345 300.654 But displaying as shown below after the dataload to destination: 100 200 300 Please help what to do. Thanks in advance.
May 24th, 2012 4:40am

What other components are in the data flow? Talk to me now on
Free Windows Admin Tool Kit Click here and download it now
May 25th, 2012 11:45am

It looks that your problem is in the source since you have scale = 0. Try this in management studio: select cast(200.345 as numeric(38,0)) -- returns 200 select cast(200.345 as numeric(38,3)) -- returns 200.345 Change the data type of that column to have a scale different from 0. David.
May 25th, 2012 12:45pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics