Search found 53125 matches

by ray.wurlod
Wed Mar 12, 2008 5:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: main_program: Fatal Error: Caught ORCHESTRATE exception in
Replies: 1
Views: 2624

Check your metadata thoroughly. Get the player processes to dump the actual schemas on which they operate. Look for duplication of fields called A_I and B_I (which are adjacent in the culprit record schema).
by ray.wurlod
Wed Mar 12, 2008 5:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorted Hashed Partition in DataSet
Replies: 6
Views: 1453

Don't forget that the subsequent jobs will need to use a configuration file that is the same as, or compatible with, the configuration file used to write the Data Set. In particular all the nodes in the writer must be available in the reader.
by ray.wurlod
Wed Mar 12, 2008 5:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: not abl to read flatfile with quote as double
Replies: 4
Views: 1183

Use None as the quote character in your target Sequential File stage. This is how you tell DataStage to use no quote characters surrounding strings.
by ray.wurlod
Wed Mar 12, 2008 5:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding the residense of log files in datastage.
Replies: 13
Views: 5414

There's no WriteSeq statement that would write anything to the flat file. If opened with OpenSeq, the statement to write a line is WriteSeq, not Write. If you want to use Write, open the parent directory with OpenPath, rather than opening the file itself with OpenSeq. Also, if opened with OpenSeq, y...
by ray.wurlod
Wed Mar 12, 2008 5:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: percent_rank() function in Datastage
Replies: 11
Views: 6382

At some point you are going to need to SORT the data (at least for the second pass) to get a rank.
Then you need to implement your business rule for tied ranks. For example 1,2,2,4,...

What Arnd called "percentage rank" is simply "percentage".
by ray.wurlod
Wed Mar 12, 2008 5:13 pm
Forum: General
Topic: issue with display option in ODBC stage
Replies: 2
Views: 1164

Does it happen every time? Usually this error occurs because of a "blip" in the network, and is only seen rarely. If you can generate a reproducible case, involve your support provider.
by ray.wurlod
Wed Mar 12, 2008 5:11 pm
Forum: IBM QualityStage
Topic: Use of QualityStage
Replies: 1
Views: 1071

If there should be exact copies and anything is "disjoint" then QualityStage is probably not the right tool, DataStage is. If, on the other hand, you need to allow slight variation (for example dates being different by one or two days, letter transposition in words, and so on) to be considered a mat...
by ray.wurlod
Wed Mar 12, 2008 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator Stage
Replies: 6
Views: 1452

Changing the specification risks invalidating the answer. There is no First or Last set function in the parallel Aggregator stage. Is that clear now? Your solution will, therefore, require both stage types. Use a "fork join" design; split the stream into two, run one stream through an Aggregator sta...
by ray.wurlod
Wed Mar 12, 2008 5:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning- Query returns no rows
Replies: 10
Views: 4191

Why do you want U to explain? U does not log in all that often.
by ray.wurlod
Wed Mar 12, 2008 5:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformation Logic
Replies: 0
Views: 837

Welcome aboard.

The best solution to this is a lookup to a "time dimension" table or Data Set. Two columns in such a table are typically MonthFirst and MonthLast dates.
by ray.wurlod
Wed Mar 12, 2008 5:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: percent_rank() function in Datastage
Replies: 11
Views: 6382

Keep going - you need more than the sum to get rank.
by ray.wurlod
Wed Mar 12, 2008 4:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator Stage
Replies: 6
Views: 1452

INSTEAD of Aggregator stage.
by ray.wurlod
Wed Mar 12, 2008 4:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CHAR(255) in a hashed file
Replies: 12
Views: 4696

With NLS enabled, source characters that correspond to the dynamic array delimiter characters (Char(248) through Char(255)) should be re-mapped to the Unicode private use area. This is described in the DataStage NLS Guide. Therefore I don't understand how 0xFF is getting through the map on the bound...
by ray.wurlod
Wed Mar 12, 2008 2:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reading a flat file
Replies: 1
Views: 676

Welcome aboard. There will be an appropriate NLS map for Chinese (you neglected to mention whether it's traditional or simplified characters), which is probably the one you ought to be using. On a Windows server try MS950 (traditional) or MS936 (simplified) for starters.
by ray.wurlod
Wed Mar 12, 2008 2:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stored procedure
Replies: 6
Views: 1631

Again, this falls under the heading of testing - you need to set up conditions (such as a faulty input argument) and verify what your DataStage does. You have already observed that it had been configured differently from Craig's - who knows what other differences may obtain?