18765 Memory fault(coredump),code 139

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
2ksaint
Participant
Posts: 66
Joined: Sun Jan 20, 2008 11:15 pm

18765 Memory fault(coredump),code 139

Post by 2ksaint »

when I run the parrallel job, im getting the following error.


Contents of phantom output file =>
RT_SC2122/OshExecuter.sh[20]: 18765 Memory fault(coredump)


Parallel job reports failure (code 139).

Environment.

HP unix box - DS 7.5.1A Server
Windows XP - DS 7.5.1A Client
DB - Oracle 9i


Please help us in resolving the issue
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

What exact version of the Oracle client is installed on the DataStage server?
-craig

"You can never have too many knives" -- Logan Nine Fingers
coface
Premium Member
Premium Member
Posts: 57
Joined: Fri Aug 10, 2007 8:13 am

Re: 18765 Memory fault(coredump),code 139

Post by coface »

Try to analyse your SQL statement carefully. We encountered this problem several times, yet. In our case, it always was related to the statement itself:

1st time: SELECT NULL, something, something_else FROM (...)

--> You cannot select NULL in the select-clause of a sql-statement within DataStage, although it is allowed in sql itself.

2nd time: SELECT something, something_else, something FROM (...)

--> You must not state the same column twice! This leads to the problem described above.

I do not remember the other examples, but it always had to do with the sql statement.
Post Reply