Search found 42189 matches

by chulett
Sat Nov 10, 2007 7:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data stage
Replies: 4
Views: 1884

Now, if you mean tell you the difference, then I respectfully suggest you Google up the two terms or just 'outer join' in general as they are bog standard relational database / sql terms and nothing specific to DataStage. If you have a more specific question about the stage, please come back and ask...
by chulett
Sat Nov 10, 2007 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data stage
Replies: 4
Views: 1884

Of course.
by chulett
Sat Nov 10, 2007 12:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing a List of Values Into SQL as Parameter
Replies: 19
Views: 8390

I have no idea if this would work properly by the time it gets to your SQL, but try a string where your inside quotes are just data: "'A','B','C'" Double quotes on each end, single quotes around each letter. Or if your SQL needs double quotes, reverse them. Of course, your whole point of u...
by chulett
Fri Nov 09, 2007 6:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trap No Record Condition
Replies: 1
Views: 735

No can do inside a job. You'll need to check outside the job for that condition and then act accordingly, typically leveraging a Sequence job for that.
by chulett
Fri Nov 09, 2007 1:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RT_CONFIG1000
Replies: 12
Views: 3416

Didn't say they weren't there.
by chulett
Fri Nov 09, 2007 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RT_CONFIG1000
Replies: 12
Views: 3416

Didn't say they weren't there.
by chulett
Fri Nov 09, 2007 1:53 pm
Forum: General
Topic: Oracle OCI Derivation
Replies: 1
Views: 1071

No, it doesn't cause a problem... unless your table names change in the process. And no, there's no need to remove them either. Best, however, would be to understand the difference in behaviour with regards to your generated SQL when a value is there versus when there is no value there. The Load opt...
by chulett
Fri Nov 09, 2007 1:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RT_CONFIG1000
Replies: 12
Views: 3416

Let's see... it works fine for some users and not for others... hmmm... methinks you have a permissions problem.
by chulett
Fri Nov 09, 2007 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Client's performance is very slow.
Replies: 14
Views: 7327

Or maybe the server had an antivirus program running on it, slowing everything down? :wink:
by chulett
Fri Nov 09, 2007 6:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort the job from "After job subroutine"
Replies: 21
Views: 10455

Not a PX guy, so haven't handled your situation in a Parallel job. We do, however, handle that kind of thing quite often in Server and I've had no such issues as you've noted in (3). It has been nothing but consistent and proper link ordering, division of labor across links and action choice are the...
by chulett
Fri Nov 09, 2007 6:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run and Reset if Required
Replies: 13
Views: 14102

theverma wrote:One more observation to add on is that when we execute dsjob command without parameter from TWS,it works fine.

Ah... then - as you've discovered - your syntax was wrong.
by chulett
Thu Nov 08, 2007 11:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort the job from "After job subroutine"
Replies: 21
Views: 10455

Once the first job completes, it commits the changes. You would need to do both in a single job if you want the failure of one to roll back the other.
by chulett
Thu Nov 08, 2007 10:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort the job from "After job subroutine"
Replies: 21
Views: 10455

Build an routine that calls the script and checks the result. Call DSLogFatal() if the script fails.
by chulett
Thu Nov 08, 2007 11:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run and Reset if Required
Replies: 13
Views: 14102

What 'problems' does it give? Can you post the actual errors?

ps. I would never have an Enterprise Scheduler execute dsjob directly, it should always be wrappered in a script that sets up the proper environment. Etc. IMHO.
by chulett
Thu Nov 08, 2007 10:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing Server JobStatus Variable
Replies: 6
Views: 3028

It returns the 'standard' status values as documented in the $DSHOME/include/dsapi.h file and elsewhere: /* 'jobStatus' values... */ #define DSJS_RUNNING 0 /* Job running */ #define DSJS_RUNOK 1 /* Job finished a normal run with no warnings */ #define DSJS_RUNWARN 2 /* Job finished a normal run with...