Search found 42189 matches

by chulett
Tue Jan 31, 2012 8:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Case or Decode logic
Replies: 1
Views: 1593

Re: Case or Decode logic

I believe in Oracle Enterprise stage we can not use case statement Why would you believe that? You can use any valid SQL syntax. As to your issue, select the fields you need from tabl1 and then do the transformations inside the job. For example, your source SQL could be something like: select a, b,...
by chulett
Tue Jan 31, 2012 8:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column sampling
Replies: 6
Views: 1936

We'll need a better explanation than that. Can you provide an example of your 'columns' and what the output of your 'random sampling' might look like?
by chulett
Tue Jan 31, 2012 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic join based on a field
Replies: 2
Views: 1195

What have you tried so far? Which part do you need help with?

What happens to fields TB & TC when the counter is 2,3 or 4?
by chulett
Mon Jan 30, 2012 7:41 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: NTLM Authentication against Sharepoint
Replies: 4
Views: 5641

There may not be much specific experience in that regard here, why not take this issue to your official support provider?
by chulett
Sat Jan 28, 2012 6:14 pm
Forum: General
Topic: Jobs disappeared from DataStage-Director
Replies: 2
Views: 1758

Any news on this?
by chulett
Sat Jan 28, 2012 8:25 am
Forum: General
Topic: Exception handling inside aborting Job itself
Replies: 11
Views: 3929

As opposed to what? Me, I don't really see taking this path and never have. That notification is the responsibility of the "job control", whatever is running your jobs or batches of jobs, be it a wrapper script or home grown job control code or your Enterprise Scheduler. IMHO. Save the &qu...
by chulett
Fri Jan 27, 2012 11:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to dived the data int diff targets
Replies: 10
Views: 3764

<cough> hitchhiker </cough>
by chulett
Fri Jan 27, 2012 11:52 am
Forum: General
Topic: Exception handling inside aborting Job itself
Replies: 11
Views: 3929

Exactly.
by chulett
Fri Jan 27, 2012 11:08 am
Forum: General
Topic: Exception handling inside aborting Job itself
Replies: 11
Views: 3929

Less overhead. You've already got a handle to the current job and you save forking a new process to spawn a shell.
by chulett
Fri Jan 27, 2012 10:33 am
Forum: General
Topic: Exception handling inside aborting Job itself
Replies: 11
Views: 3929

Stick with the API and a BASIC routine there rather than shell out to the O/S.
by chulett
Fri Jan 27, 2012 8:50 am
Forum: General
Topic: Exception handling inside aborting Job itself
Replies: 11
Views: 3929

Actually you can, that's one of the many things the "After Job" section of a job is for. When anything there triggers, all processes on the canvas have completed but if you checked the status of the job from there it would still show as still "running". However, a check of the JO...
by chulett
Fri Jan 27, 2012 7:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Realtime usage of ACCOUNT BASED HASH FILE
Replies: 16
Views: 5017

Yes, he does. Open either one up and you'll see.
by chulett
Thu Jan 26, 2012 6:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while compiling jobs in 8.5
Replies: 1
Views: 1958

You would also need to migrate any custom (user written) Server routines for them to become available. That message implies that you did not do so.
by chulett
Thu Jan 26, 2012 6:57 pm
Forum: General
Topic: DSJOB.exe not starting the job, no error message received
Replies: 8
Views: 3163

Right... it's not something you'll ever "see", but rather something you must do an explicit check for. There is an equivalent in UNIX where the exit status of the last command is in $?

Code: Select all

echo $?
by chulett
Thu Jan 26, 2012 6:51 pm
Forum: General
Topic: Char(254) value for @FM
Replies: 5
Views: 3926

D'oh! Thanks for the catch... always thinking in hex for that kind of thing, it seems.