Search found 253 matches

by Eric
Wed Sep 14, 2005 2:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while running the orchestrate scripts
Replies: 5
Views: 2855

This is a message that the osh is wrong in some way.

Why are you trying to write in Osh?
Why don't you create your job using the Designer?
by Eric
Tue Sep 13, 2005 4:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Checking the jobs in runnable state
Replies: 10
Views: 4326

Re: Checking the jobs in runnable state

kool_cons wrote:or else need to compile the jobs and run the sequence. this is all has to be done in unix.
You can't compile jobs from a Unix script.
by Eric
Wed Sep 07, 2005 6:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in Running Shell Script Though DataStage
Replies: 5
Views: 2418

I think you need to preload java in your shell script.
Look at your dsenv file for the entry LD_PRELOAD.
Try getting your shell script to add this environment variable before it calls and java components.
by Eric
Fri Sep 02, 2005 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Importing parallel shared container
Replies: 13
Views: 5087

Does it contain a BASIC Transformer?
by Eric
Fri Aug 26, 2005 5:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine usage
Replies: 6
Views: 1899

To build just an object file for a routine you don't need to run the linker. If you wish to build a library file for a routine then you will need to use the linker (and thus the options). I think the referenced compiler for AIX is xlC_r ? Just to be sure - each time you rebuild the object file you s...
by Eric
Thu Aug 25, 2005 8:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine usage
Replies: 6
Views: 1899

In your 'c' code you haven't declared the function return type.
[ i.e int AddNumber( int a, int b) }

When building the object file, did you use:
CompilerOptions = -+ -O -g
LinkerOptions = -G -qmkshrobj=1000

Have you declared the arguments in the PX routine definition?
by Eric
Thu Aug 25, 2005 5:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine usage
Replies: 6
Views: 1899

I assume you PX routine definition has the Object type = 'Object'.
(Not Library) if so:

Have you tried using the examples from your DataStage Install media?
Which Platform and compiler options have you used?
by Eric
Wed Aug 24, 2005 5:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to clear the status files with Aix command interface
Replies: 4
Views: 2102

I think to clear the job with the Invocation ID from the director you would have to recompile the origianal job. (without InvocationID)
by Eric
Thu Aug 18, 2005 5:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in using Custom Stages
Replies: 4
Views: 1893

You must exprt the custom stage from the machine it was created and import it to the new machine before the jobs that rely on this stage will work.
by Eric
Thu Aug 18, 2005 5:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logs from C++ library coming only sometimes.
Replies: 2
Views: 1052

Have you tried waiting a short while before killing the job?
If you kill the job to quick the messages won't have found there way to the director log before the kill signal throws away your error logging.
by Eric
Wed Aug 17, 2005 3:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Runtime Error in transformer!!!!!
Replies: 10
Views: 4487

s_rkhan wrote: Are there any specific runtime C++ libraries that are required for Linux machines.
You just need to check that you are using the correct version of Linux and compiler. What version of Linux do you run and which compiler is installed?
by Eric
Tue Aug 16, 2005 4:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Runtime Error in transformer!!!!!
Replies: 10
Views: 4487

/usr/lib is definitely not enough. You also need the DataStage lib directory, the branded ODBC drivers' lib directory, any other operating system library directories and, in particular, the directory containing the "missing" V0S1_testjobtrans_Transformer_1.so. You need to adjust LD_LIBRAR...
by Eric
Tue Aug 16, 2005 4:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fmt() in Parallel
Replies: 2
Views: 1545

I first though is that FMT is a server function and thus not avaliable in a parallel job. :?:
by Eric
Mon Aug 08, 2005 4:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to edit Generated OSH
Replies: 6
Views: 2417

kumar_s wrote:Is there any way we can refresh OSH so that it takes the current configuration of the job.
If your using a parallel transformer in the job try using the "Force Compile" Option when you re-compile the job.