Search found 53125 matches

by ray.wurlod
Thu Dec 15, 2005 3:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX Lookup Stage
Replies: 3
Views: 3043

No.

The key is already defined in the Lookup File Set. You don't need to do anything more.

The only time you need to define a key expression in the Lookup stage is when you're doing a lookup against a Data Set.
by ray.wurlod
Thu Dec 15, 2005 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to use ENV variables
Replies: 3
Views: 1106

#$DBSchema#.TableName

The surrounding "#" characters are the way in DataStage that you specify a reference to a job parameter.

Naturally you have to have added $DBSchema to the job as a parameter.
by ray.wurlod
Thu Dec 15, 2005 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Conversion
Replies: 11
Views: 4839

But someone else on the early part of the learning curve might like to benefit from your experience. Can you advise what stage type you used and what expression(s) you used to solve this?
by ray.wurlod
Thu Dec 15, 2005 3:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to read this packed decimal value
Replies: 3
Views: 939

In parallel jobs you can declare the value to be hex. Someone (Vincent?) posted this undocumented trick some months back.
by ray.wurlod
Thu Dec 15, 2005 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Progress percentages in Log
Replies: 6
Views: 2579

Row count.

The sequential file is being read on node number 0 but, since it's being processed in sequential mode, the node identifier doesn't need to be reported during progress. The total row count does include the node identifier, since it is likely to be the source for partitioning.
by ray.wurlod
Wed Dec 14, 2005 11:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What is the Reason for this warning?
Replies: 1
Views: 588

Because somewhere - almost certainly in a Transformer stage - you are trying to perform arithmetic or a numeric function with data that are not numeric.

You can view the code in file RT154/JOB.1062133866.DT.1384922442.TRANS2 on your server.
by ray.wurlod
Wed Dec 14, 2005 11:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Building Datastage Audit job (Scanning History tables)
Replies: 3
Views: 2685

The two stages I mentioned allow you to specify some or all non-key columns as additional change detection columns.
by ray.wurlod
Wed Dec 14, 2005 11:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DATASTAGE VERSIONS
Replies: 1
Views: 1092

A :lol:

There are quite a few differences. Your support provider will be able to supply a readme file if you haven't got 7.5.1A yet. Or you can get a "what's new" from Asecntial Developer Net
by ray.wurlod
Wed Dec 14, 2005 11:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Packs
Replies: 1
Views: 878

No. The SAP R/3 PACK is used to communicate with SAP R/3 (the SAP application server). The Web Services PACK contains stages for working with web-applications, for example the ability to work with web server logs. There are different kinds of Message Adapter, for example there is one for working wit...
by ray.wurlod
Wed Dec 14, 2005 10:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error viewing log, Computed blink does not match expected
Replies: 17
Views: 11500

2GB is a shitload (that's a technical term) of warning messages!!!
by ray.wurlod
Wed Dec 14, 2005 10:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Building Datastage Audit job (Scanning History tables)
Replies: 3
Views: 2685

Your design won't be much different in PX. Probably a good thing to do is to select from the history table constrained on a time period, and ordered by any column in which you want to detect change. Then an approach using any of the change detection stage types, or even stage variables in a Transfor...
by ray.wurlod
Wed Dec 14, 2005 7:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error viewing log, Computed blink does not match expected
Replies: 17
Views: 11500

You should purge your log more frequently. Set auto purge. Don't let it grow past 2GB. If it's going to anyway, resize it to use 64-bit pointers.
by ray.wurlod
Wed Dec 14, 2005 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error with dynamic hashfiles
Replies: 3
Views: 874

The exact problem is that, when the error occurred, you already had as many dynamic hashed files open as permitted by the T30FILES tunable. You need to increase T30FILES to prevent recurrence of this problem. Remember that most of the Repository tables are dynamic hashed files; these are included in...
by ray.wurlod
Wed Dec 14, 2005 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HFC.exe -> need it but don't have the Datastage CD
Replies: 20
Views: 5916

Static or dynamic - doesn't make any difference for the total volume of data to be stored. Choose dynamic for ease of maintenance. Choose static for optimum performance IFF (if and only if) the volume of data is precisely known and unchanging.
by ray.wurlod
Wed Dec 14, 2005 3:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get Max Key From Hashfile
Replies: 7
Views: 2558

It must be the name of the hashed file in a Trans() function, not its pathname. You need to create a VOC pointer using SETFILE before the Trans() function will work. You would have determined this had you read the entry for Trans() in the manual.