Search found 53125 matches

by ray.wurlod
Fri Dec 31, 2010 3:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query on Lookup job score
Replies: 1
Views: 2203

Because a Lookup stage generates what is called a "composite operator" made up from the two operators LUT_CreateOp and LUT_ProcessOp. These need an intermediate (virtual) data set through which they can pass data.
by ray.wurlod
Fri Dec 31, 2010 3:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to authenticate the current user against the selected
Replies: 4
Views: 11144

Given the age of the previous posts, this might have been better as a new question. However, the simple answer is that the solver made sure that the host name of the services tier machine (and, presumably, engine tier) are correctly recorded in all pertinent hosts file - in short, that each machine ...
by ray.wurlod
Fri Dec 31, 2010 3:23 am
Forum: General
Topic: Execute Command Stage return value
Replies: 6
Views: 12615

Yes. Create explicit triggers for Warning and Failure. These take precedence.
by ray.wurlod
Fri Dec 31, 2010 3:22 am
Forum: General
Topic: Change of datastage Repository from DB2 to MS SQL server
Replies: 1
Views: 1674

No. And you have to install Information Server in its entirety, not just DataStage.

IBM do have a migration tool to help with migration to version 8.5 (which may - I do not know - be able to do version 8.1 migrations). This is only available form IBM via their "concierge service".
by ray.wurlod
Thu Dec 30, 2010 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sort and hash partitioning
Replies: 4
Views: 2501

No, you are almost certain to get incorrect results. And performance is likely to be woeful or you'll get "row out of order" fatal errors.
by ray.wurlod
Thu Dec 30, 2010 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Switch stage
Replies: 3
Views: 2386

The Switch stage is closest to the switch construct in the C programming languages. It is quite unlike anything in SQL. The closest SQL construct is CASE, but even CASE allows for expressions - switch does not, being driven purely by values.

The Filter stage uses SQL-like WHERE clauses.
by ray.wurlod
Thu Dec 30, 2010 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Determining file delimiter
Replies: 4
Views: 2102

By inspection alone you can not answer this question. You need the metadata. This should be able to be obtained from whoever created the file.
by ray.wurlod
Thu Dec 30, 2010 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Right function with date
Replies: 7
Views: 2927

The "6'0'R" formatting construct only works in BASIC expressions - only works in server jobs or BASIC Transformer stage.

In parallel jobs prefer

Code: Select all

Right("000000":InLink.TheString, 6)
by ray.wurlod
Thu Dec 30, 2010 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot find job ROOT when try to save job
Replies: 10
Views: 7231

Create a new job (don't use Create Copy) and copy/paste stages to the new job.
by ray.wurlod
Thu Dec 30, 2010 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best partitioning method
Replies: 5
Views: 8569

That's too simplistic. You not only have to use a key-based algorithm, but you must also make sure that the partitioning is based on (at least the first) join key and that the algorithm will yield sufficient distinct values to spread data across all the available nodes.
by ray.wurlod
Thu Dec 30, 2010 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning while using Teradata Connector -RCP enabled
Replies: 9
Views: 7414

Do you have a particular need to have RCP enabled?
by ray.wurlod
Thu Dec 30, 2010 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Tuning
Replies: 9
Views: 4271

Nice to know the speed of your memory, but it's much more important to know the capacity of your memory. You can use Link Partitioner and Link Collector stages to split your data stream into parallel streams that can be processed in separate processes, using (mandatorily) inter-process row buffering...
by ray.wurlod
Thu Dec 30, 2010 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file Limit
Replies: 11
Views: 8697

People, it's a hashed file, not a hash file.

A hash file is a tool for shaping a block of hash.
by ray.wurlod
Thu Dec 30, 2010 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Split one row to multiple rows
Replies: 17
Views: 8356

Even without one.
by ray.wurlod
Thu Dec 30, 2010 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Suggest better design
Replies: 6
Views: 2780

In terms of the original poster's final question, you can control a "grouped transaction" in an ODBC stage. As to the rest, please provide an English description of what you are trying to achieve.