Getting Phantom Error

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
sgpatil
Participant
Posts: 9
Joined: Mon May 26, 2008 6:23 am
Location: Bangalore

Getting Phantom Error

Post by sgpatil »

Hi

I having one job with connecton with Netezza database connection through ODBS stage
when I run the job Itn is througinh this below message in director

Contents of phantom output file =>
RT_SC128/OshExecuter.sh: line 20: 29584 Segmentation fault (core dumped) $APT_ORCHHOME/bin/osh "$@" -f $oshscript >$oshpipe 2>&1

and Parallel job reports failure (code 139)

can anybody help me please
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Welcome aboard.

A segmentation fault is memory-related, and can be caused by such things as trying to shoehorn too large a string into a column buffer (for example "ABCDEFGHIJKLM" into a Char(10) or VarChar(10) column would do it), trying to load a NULL into a not nullable column, and various other things.

Check, in your ODBC stage, that you are doing the right things.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply