floating point decimal is not fully supported; adjusting the

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
sudhakar_viswa
Participant
Posts: 85
Joined: Fri Nov 18, 2005 5:35 am

floating point decimal is not fully supported; adjusting the

Post by sudhakar_viswa »

Hi,

I am getting the following warning.

floating point decimal is not fully supported; adjusting the scale.

My source is Oracle and target also Oracle.

Input column is containing the number but that column datatype is varchar.I am populating this column into target.Target column datatype is NUMBER.

I gone through searching,but i could not findout solution.Can anybody suggest me

Thanks & Regards,
-- sudhakar
i need to know datastage
us1aslam1us
Charter Member
Charter Member
Posts: 822
Joined: Sat Sep 17, 2005 5:25 pm
Location: USA

Post by us1aslam1us »

Have you tried the "stringtodecimal" transform?

Sam
thompsonp
Premium Member
Premium Member
Posts: 205
Joined: Tue Mar 01, 2005 8:41 am

Post by thompsonp »

How have you defined the NUMBER column in the database?
Try constraining it e.g. NUMBER(38,0)
balajisr
Charter Member
Charter Member
Posts: 785
Joined: Thu Jul 28, 2005 8:58 am

Post by balajisr »

Check the precision and scale in the source and apply the same to the target.

for e.g The above error may occur if source is number(38,4) and target is number(38,0).
Post Reply