Search found 15603 matches

by ArndW
Thu Oct 21, 2010 3:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OSH is running into infinite loop
Replies: 4
Views: 2274

I would tend to disagree with you that the Oracle connection or stage is not the culprit. Do you have any specific SQL you use in the jobs, or nonstandard stage settings? I don't think that SuSE is a supported platform, otherwise you could approach your support provider. Have you tried using ODBC fo...
by ArndW
Wed Oct 20, 2010 9:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OSH is running into infinite loop
Replies: 4
Views: 2274

What does the job do (i.e. which stages) and does it have before/after logic in the job or any of the stages?
by ArndW
Wed Oct 20, 2010 8:07 am
Forum: General
Topic: iostat 10 10 command output
Replies: 4
Views: 2356

Those are your devices. the man pages of "iostat" will help you understand the output, as would using google to search for "UNIX devices".
by ArndW
Wed Oct 20, 2010 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Job is hanging at tracemode level
Replies: 1
Views: 1310

Make a test copy of the job with just the Oracle read and a write to a sequential file. Does the error still happen? What sort of SQL are you issuing? Have you successfully read any data from this stage in this project?
by ArndW
Wed Oct 20, 2010 2:33 am
Forum: General
Topic: SMTPMail Server closed the connection!
Replies: 5
Views: 2296

DataStage is not a SMTP client, but fortunately on Windows the MKS toolkit contains "smtpmail" which you can use.
by ArndW
Wed Oct 20, 2010 2:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: congiaration
Replies: 1
Views: 767

This has not only been answered many, many times on the forum but is also clearly documented in the Parallel Job Developers Guide in the chapter 12 titled "The Parallel engine configuration file" on pages 599 through 615. After you've read those pages and have specific questions, please do...
by ArndW
Tue Oct 19, 2010 10:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Director Log causing DataStage to fail
Replies: 9
Views: 10140

Perhaps the log is very large or corrupt or both. This can be fixed if you "Job -> Clear Log -> Immediate Clear all entries" from the director.
by ArndW
Mon Oct 18, 2010 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how remove duplicate in transformer
Replies: 7
Views: 3067

Craig, I agree with you - I would program it that way but expanded the logic to make the statement more understandable.
by ArndW
Mon Oct 18, 2010 6:49 am
Forum: General
Topic: Bug in Execute Command stage?
Replies: 7
Views: 2651

The execute command stage will almost certainly not have any bug of the type you assume it has. We are asking about the problem so that you can located the actual cause. The "0" or "1" return value is due to the command line setting stderr. Since you stated that there is more log...
by ArndW
Mon Oct 18, 2010 6:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController(6)
Replies: 6
Views: 4479

Ray - I corrected the original post, but you slipped in earlier
by ArndW
Mon Oct 18, 2010 6:06 am
Forum: General
Topic: Link Naming Standard
Replies: 11
Views: 5348

So far almost every project that I've worked on has created a set of standard naming rules for everything from links and stages to variables and parameters.

No two projects have had the same rules, and only a few have had rules similar to another project.
by ArndW
Mon Oct 18, 2010 6:05 am
Forum: General
Topic: Subroutine - visible !!! ???
Replies: 5
Views: 2364

What we call "Routines" in DataStage server jobs are actually functions. A Job Before/After routine is a real routine and does not have a variable, user-defined, list of parameters. It has 2 parameters, the first being input to the routine and the secod is the return code. Any return code ...
by ArndW
Mon Oct 18, 2010 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how remove duplicate in transformer
Replies: 7
Views: 3067

2 Stage Variables:

Code: Select all

svDuplicate          IF In.Key=svLastKey THEN 1 ELSE 0
svLastKey          In.Key
constraint "svDuplicate=0"
by ArndW
Mon Oct 18, 2010 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Message Handler in Sequencer
Replies: 5
Views: 2062

Message handlers only apply to PX jobs, not to server jobs (job sequences are server jobs).
by ArndW
Mon Oct 18, 2010 5:57 am
Forum: General
Topic: Bug in Execute Command stage?
Replies: 7
Views: 2651

"cat file1 file2 > wc -l" should be sufficient without having to create a file. Is the "0" or "1" supposed to be the line count or the return code?