OCI has fetched truncated data

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
wmazzei
Participant
Posts: 3
Joined: Tue May 11, 2004 3:06 am

OCI has fetched truncated data

Post by wmazzei »

Does anyone know what this message means? I get this as a warning when I fetch data from a Siebel table.
kcbland
Participant
Posts: 5208
Joined: Wed Jan 15, 2003 8:56 am
Location: Lutz, FL
Contact:

Post by kcbland »

You have retrieved data in a column that exceeded the specified metadata.
Kenneth Bland

Rank: Sempai
Belt: First degree black
Fight name: Captain Hook
Signature knockout: right upper cut followed by left hook
Signature submission: Crucifix combined with leg triangle
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Search this forum for your entire message and you'll turn up several discussions on the topic. As Ken mentions, you've specified at least one of your fields as being 'too small' in the OCI stage metadata, and OCI had to 'truncate' it to bring it back.

Now, this can be a field declared as a NUMBER in Oracle. Not NUMBER(xx) but NUMBER with no precision. Setting the display size to the default of 38 can cause the problem and upping it to 40 generally fixes it. You can also encounter the problem when sourcing LONG fields.

Anything like that going on?
-craig

"You can never have too many knives" -- Logan Nine Fingers
wmazzei
Participant
Posts: 3
Joined: Tue May 11, 2004 3:06 am

Post by wmazzei »

Many thanks!!! In my case, I changed my varchar(250) to varchar(300). Now it is working.
Post Reply