Search found 53125 matches

by ray.wurlod
Wed Dec 20, 2006 2:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using the Transformation Stage Variable in the OCI stage
Replies: 2
Views: 1193

A job parameter reference is the only kind of "variable" allowed in the Table Name field. Therefore you can not achieve what you ask.
by ray.wurlod
Wed Dec 20, 2006 2:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: COM Initialization failed
Replies: 5
Views: 2449

Does the job work if you use ODBC rather than OLEDB? ODBC does not need to create any COM objects. Meanwhile, have you reported this - with a reproducible case - to your support provider? It may be that the OLEDB stage does not support so many output links; whether this is a bug or not I can not say...
by ray.wurlod
Wed Dec 20, 2006 1:55 pm
Forum: IBM QualityStage
Topic: Setting Survivorship Rules
Replies: 1
Views: 1115

Something like Rule 1 happens automatically during the blocking phase of your prior MATCH job. The Master (the record with the highest information weight) is marked as XA, the others in its block as DA. There is no simple rule to work across multiple fields, as you choose to do, though there is a si...
by ray.wurlod
Wed Dec 20, 2006 4:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rejects row and constraints
Replies: 5
Views: 1328

It is. But the output link handling the failed lookups is not a reject link. The reject link handles only failures reported by the database.
by ray.wurlod
Wed Dec 20, 2006 4:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EE parallel jobs on Linux
Replies: 2
Views: 1760

It can all be done. Of course, you can only boot one operating system at a time, so you will not be able to run your DataStage server on Linux and expect to be able to run your DataStage clients on Windows at the same time. Probably not what you had in mind. Also, your laptop probably doesn't really...
by ray.wurlod
Wed Dec 20, 2006 4:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage7.5 on Windows Platform
Replies: 2
Views: 1622

The only version of DataStage for Windows that will run parallel jobs is 7.5x2, at least until version 8.0 is released.

7.5x2 is NOT the same as 7.5.2. Version 7.5.2 will not permit execution of parallel jobs on a Windows platform.
by ray.wurlod
Wed Dec 20, 2006 4:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TimeStamp Difference
Replies: 11
Views: 4021

All of which assumes that the OP can actually get microseconds from the system clock. On Windows platforms I suspect not, hence my first post on this thread.
by ray.wurlod
Wed Dec 20, 2006 4:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Usind shell Script in DataStage(Px)
Replies: 11
Views: 3609

Do you wheel in a third developer to find the majority solution? What if the third developer comes up with a third solution, for example using Perl?
by ray.wurlod
Wed Dec 20, 2006 4:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequence got aborted?
Replies: 6
Views: 1642

What you actually need to do is to enable the "Add Checkpoints so sequence is restartable on Failure" property in the job sequence's compilation options (on the General tab of job properties).
:wink:
by ray.wurlod
Wed Dec 20, 2006 4:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could not check all operators
Replies: 8
Views: 4210

This piece shows that operators for four stages are being combined into one process: op9[2p] {(parallel APT_CombinedOperatorController: (APT_LUTProcessOp in ManFeed_lkp) (APT_TransformOperatorImplV0S114_Rsn321_Test_Transformer_114 in Transformer_114) ( _SurKeyGen) ( Ins_flt) ) on nodes ( sps111[op9,...
by ray.wurlod
Wed Dec 20, 2006 4:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rejects row and constraints
Replies: 5
Views: 1328

Try a reject link without any constraint expression. Use two Transformer stages if you want to segregate the two types of reject. Check the output link execution order to make sure that the reject link is executed last.
by ray.wurlod
Wed Dec 20, 2006 4:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Splitting One File to Multiple Files
Replies: 21
Views: 10159

The Sequential File stage does have append and overwrite as write methods. But the question remains: how are you parsing the results transmitted by the Folder stage into separate files?
by ray.wurlod
Wed Dec 20, 2006 4:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: COM Initialization failed
Replies: 5
Views: 2449

Do you have any external (ActiveX) functions defined and being used in this job?

Does the job work if you use ODBC rather than OLEDB?
by ray.wurlod
Wed Dec 20, 2006 4:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage7.5 on Windows Platform
Replies: 1
Views: 675

7.5x2 is the ONLY version where you can run parallel jobs on Windows, until version 8.0 is released.
by ray.wurlod
Wed Dec 20, 2006 4:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capture Duplicate Records
Replies: 2
Views: 1047

You should get "duplicate" when the value of Key is the same as in the previous row. And, with the logic you've stated (ignoring the typo for Else) you should get "NO" when the value of Key is different from that in the previous row. If this isn't happening, check your work, particularly your stage ...