Search found 15603 matches

by ArndW
Tue Jul 31, 2007 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing Invocation Id
Replies: 6
Views: 6470

When calling a job using the dsjob command line interface, specify "{JobName}.{InvocationID}" for the job name.
by ArndW
Tue Jul 31, 2007 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UNIX command output not captured using RoutineActivityStage
Replies: 10
Views: 4455

Since you haven't posted the UNIX command string when you pass in an argument there is nothing that can be done to help.
by ArndW
Tue Jul 31, 2007 3:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is it possible to identify redundant 'lookuptable*' files?
Replies: 4
Views: 1512

I think that you should find a Job titled something like "RemoveOrphanedPXFiles" somewhere in the project that you can use to do this for you - this isn't a standard job but one that I wrote & installed. What it does is traverse the WHOLE system looking for PX files (this runs a long time and yo...
by ArndW
Mon Jul 30, 2007 11:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS client error
Replies: 5
Views: 1493

Just on your PC or on any? I would recommend re-installing your client.
by ArndW
Mon Jul 30, 2007 11:34 pm
Forum: General
Topic: Problem with Oracle OCI Stage
Replies: 5
Views: 1203

Try adding a parameter with a unique number passed to it from the sequence and use that as part of the sequential filename. Then check the files for each run to see if they match what you expect; this might help narrow down the issue.
by ArndW
Mon Jul 30, 2007 10:54 pm
Forum: General
Topic: Problem with Oracle OCI Stage
Replies: 5
Views: 1203

Ahh, I think I understand now. Does that mean if a run produces no output then it uses the previous run's file again for the Oracle load? Can you check to ensure you do have the "overwrite" setting on in your output file? Also, what version and platform are you on?
by ArndW
Mon Jul 30, 2007 10:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do i import table definitions from DB2
Replies: 3
Views: 1404

In the manager do a Import -> Table Definitions -> Plug-In Meta Data Definitions and choose your DB2.
by ArndW
Mon Jul 30, 2007 10:26 pm
Forum: General
Topic: Problem with Oracle OCI Stage
Replies: 5
Views: 1203

Have you declared this as a multi-instance job and are calling it concurrently with different invocation IDs in the sequence? If yes, you need to ensure that the sequential file is different for each instance - hint - use the invocation id as part of the filename.
by ArndW
Mon Jul 30, 2007 8:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage - Integers
Replies: 5
Views: 1556

What stage do you have feeding the reference in the lookup? I wonder if it is Oracle - which only knows about number and not integer types. On the other hand, I am using DATE (well, timestamp) columns for lookups right now without any issues at all - but I am not redefining them as INTEGER(10).
by ArndW
Mon Jul 30, 2007 6:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UNIX command output not captured using RoutineActivityStage
Replies: 10
Views: 4455

Ray - Ahh, missed that. As you noted, often the first line returned from the execute command is empty.
by ArndW
Mon Jul 30, 2007 6:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field function question
Replies: 2
Views: 994

The Field function is qutie versatile and powerful: FIELD({StringToProcess},{Delimiter},{Position},[{NumberOfFields}]) So for String = "Hello World, All your base are belong to us." FIELD(String,",",1) would be "Hello World" FIELD(String," ",5) would be "base" FIELD(String," ",6,2) would be "are bel...
by ArndW
Mon Jul 30, 2007 5:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UNIX command output not captured using RoutineActivityStage
Replies: 10
Views: 4455

Since you are logging the UNIXcmd variable in an informational message, could you post that output for a run that doesn't work? The output goes to stdout, so perhaps this command is returning nothing to standard output...
by ArndW
Mon Jul 30, 2007 2:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to trim
Replies: 13
Views: 2956

So the RHS column is trimmed correctly, and that is what you are passing on to your output stage where the blanks are being added in again? This would only happen if you are going to a fixed width CHAR field - are you sure you aren't doing that somewhere? Are you using user-defined SQL and, if so, a...
by ArndW
Mon Jul 30, 2007 2:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to trim
Replies: 13
Views: 2956

Siebel is the CRM system sitting on top of a database - probably DB2 or Oracle. And what happens in the PEEK stage with the trimmed field?