Search found 53125 matches

by ray.wurlod
Thu Sep 07, 2006 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: xml best practise doc
Replies: 3
Views: 1317

Does that cover XML? If so, it can be published on www.datastagexchange.com (a sister site to this one).
by ray.wurlod
Thu Sep 07, 2006 4:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UserDefined Query Delete statement
Replies: 11
Views: 2950

You need to supply at least one query parameter from the row being processed. Set it from the job parameter in an upstream Transformer stage.

Does the update strategy "replace existing rows" (which equates to delete then insert) work for you?
by ray.wurlod
Thu Sep 07, 2006 4:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup Question
Replies: 15
Views: 3163

You must connect the reference data via either ODBC stage or UV stage - these are the only stage types in server jobs that support multi-row return.
by ray.wurlod
Thu Sep 07, 2006 4:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Internal Error (39202)
Replies: 5
Views: 6183

Is there any possibility that a job which has been run with unlimited warning can corrput the "dsrpcd" file? None whatesoever. This executable is not even in a directory accessed by DataStage processes. dsrpcd is started, typically, by the init process. DSEsettag.sh does override entries in the uvc...
by ray.wurlod
Thu Sep 07, 2006 4:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: merge stage failure
Replies: 3
Views: 1441

Does either of your sources contain newline characters in the data? If so, have you adjusted the table definition to indicate that this is the case?
by ray.wurlod
Thu Sep 07, 2006 4:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Failed to open project - Status code = 81011
Replies: 7
Views: 6168

So the GUI is connecting but dsjob is not. What does that suggest to you? Try specifying authentication information (-host, -user and -password options) in your dsjob command line.
by ray.wurlod
Thu Sep 07, 2006 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: look up failed
Replies: 6
Views: 1997

The message about large objects suggests you're trying to return a CLOB or a BLOB. This is not supported.
by ray.wurlod
Thu Sep 07, 2006 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RowCount from the DSGetLinkInfo always return zero
Replies: 20
Views: 6587

Can you post the code of your after-job subroutine, maybe we can find your glitch. hJob = DSJ.ME Message = "Link row counts:" StageList = Convert(",", @FM, DSGetJobInfo(hJob, DSJ.STAGELIST)) Loop Remove StageName from StageList Setting MoreStages LinkList = Conver...
by ray.wurlod
Thu Sep 07, 2006 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX jobs not terminating
Replies: 5
Views: 1367

By designing (a) so that they do finish and/or (b) that hang conditions are detected and managed.
by ray.wurlod
Thu Sep 07, 2006 3:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MS OLEDB Stage
Replies: 1
Views: 1326

1) No.
2) No. It's not necessary or even desirable.
3) No. There's no such thing as an OLEDB driver. Anywhere.
by ray.wurlod
Thu Sep 07, 2006 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unexpected termination by Unix signal 9(SIGKILL)
Replies: 9
Views: 13514

It's beginning to look like the software (whether DataStage or other) itself might be killing processes with SIGKILL signal, which is never recommended practice. Do you run from a job sequence that includes a Terminator activity? Is the machine heavily loaded when this occurs and, if so, does the op...
by ray.wurlod
Thu Sep 07, 2006 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TNS:could not resolve service name
Replies: 5
Views: 1777

:idea: Sounds like getting a briefing on the basics from your Oracle DBA would not be a bad idea either!
by ray.wurlod
Thu Sep 07, 2006 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Persist Generated File Infile..Row_Generator
Replies: 12
Views: 4105

There are many ways. Possibly the easiest is to follow the Row Generator stage with a Copy stage whose second output sends rows to a file.
by ray.wurlod
Thu Sep 07, 2006 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: look up failed
Replies: 6
Views: 1997

Not true. Join stage supports more than two inputs. They are called Left, Intermediate and Right. I believe that it still executes pairwise joins into intermediate result sets, however, the same as most database engines do.
by ray.wurlod
Thu Sep 07, 2006 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Read Performance
Replies: 4
Views: 1216

The Lookup stage is a composite operator; it creates two operators - one to load the reference (virtual) Data Set, the other to perform the actual lookup operation. You might benefit by increasing the buffer sizes on the inputs to Lkup3 and possibly Lkup4.