Warinings with ORacle Enterprise plugin

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
nivas
Participant
Posts: 117
Joined: Sun Mar 21, 2004 4:40 pm

Warinings with ORacle Enterprise plugin

Post by nivas »

HI

Inside the OracleENterprise plugin for the columns type decimal I am getting the following error.Job is successful.
Could any body please help me in this.

Oracle_Enterprise_61: When checking operator: When binding output interface field "BIRTHWEIGHT" to field "BIRTHWEIGHT": Implicit conversion; from source type "int64" to result type "decimal[10,0]": Possible range limitation

thnaks
Nivas
T42
Participant
Posts: 499
Joined: Thu Nov 11, 2004 6:45 pm

Post by T42 »

You are converting data from an integer to decimal. In DataStage, you do not do that without explicitly converting it, due to the possibility of truncation.

For DataStage EE, Oracle's Number(10) is a Decimal(10,0). Oracle's Number() is an Integer.

So ensure that your data being provided is as Decimal(10,0). You need to do StringToDecimal() function call within the Transformer.
Post Reply