job is aborted due to mismatch

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
harithay
Participant
Posts: 106
Joined: Tue Dec 14, 2004 10:51 pm

job is aborted due to mismatch

Post by harithay »

Hi all ,

my job is aborted ,
field sql type length scale

input nav decimal 18 2
target is sql server nav numeric 15 2


i got follwing first warning.

Ldnavtable..ODBC_2.DSLink4: DSD.BCIOpenW results of SQLColAttributes(nav) gave MetaData mismatch
COLUMN.TYPE Expected = Numeric Actual = Integer


what might be the reason
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

Harithay,

your database has the column defined as an INTEGER and in your column definition in the ODBC stage you have defined it as a floating point number with 2 decimal places; DataStage is telling you that it doesn't like what you've done.

Change your column definition to that of an integer data type and you will be able to continue.
harithay
Participant
Posts: 106
Joined: Tue Dec 14, 2004 10:51 pm

Post by harithay »

Thank you arndw,

you are ryt , my dba has changed its data type in the target . i don't know that.
Post Reply