Search found 53125 matches

by ray.wurlod
Wed Mar 15, 2006 5:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: scratch space issue
Replies: 4
Views: 988

It's always worth cleaning entries that are no longer needed from file systems. It's the fact that people don't that keeps disk vendors in business (in part at least). Pretty anything in the directories identified as scratch disk resource is a candidate (provided no jobs are running), as well as any...
by ray.wurlod
Tue Mar 14, 2006 6:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HASH File Behaviour
Replies: 5
Views: 952

What you say is true. It also leads to the danger that the lock table may become full, as noted earlier. This could cause the job to abort. Depending on how the lock table tunables are set, there may be as few as approximately 8000 locks available.
by ray.wurlod
Tue Mar 14, 2006 6:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Question about UtilityAbortToLog
Replies: 12
Views: 3579

You CAN do whatever will compile successfully. Whether it's best practice is another question entirely. I have a strong belief that production jobs ought never to abort; that the control hierarchy (job sequences) should always remain in control.
by ray.wurlod
Tue Mar 14, 2006 6:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge Sequential Files
Replies: 16
Views: 3607

Use one Sequential file stage with a filter command that uses cat (UNIX) or type or copy (Windows) to load all the rows from all the files into a single stream. Run this through the Aggregator stage. Even better would be to run the output of cat through sort (on the key) as part of the filter; this ...
by ray.wurlod
Tue Mar 14, 2006 6:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HASH File Behaviour
Replies: 5
Views: 952

Actually the lock is only taken if the lookup fails. Provided you're writing back to the hashed file in every such case, you won't have a problem with the lock table, as the write releases the update lock.
by ray.wurlod
Tue Mar 14, 2006 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: scratch space issue
Replies: 4
Views: 988

In a word, MORE. You cannot stint for parallel jobs. If you can't get another file system, then you have no possible solution for "file system full" and you should go back to server jobs until you can get some more disk space. Parallel jobs are far more resource hungry than server jobs; the extra re...
by ray.wurlod
Tue Mar 14, 2006 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: not able to open the job
Replies: 10
Views: 3145

It might be the best, but be very, very careful when using it that you don't inadvertently - or even deliberately - release validly-held locks. The locks are there for a reason - to prevent data anomalies in the Repository database.
by ray.wurlod
Tue Mar 14, 2006 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: vertical pivot
Replies: 28
Views: 11560

For anyone comfortable with multi-valued fields (for example in UniVerse or UniData), the Make Vector stage should not be daunting. A vector is simply a list of values in the one field.
by ray.wurlod
Tue Mar 14, 2006 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Errors exporting metadata with Reporting Assistant
Replies: 10
Views: 4495

If you're on 7.5.x you can click on the Generate Report tool (second from the right) in the Designer toolbar. What exactly were you after?
by ray.wurlod
Tue Mar 14, 2006 2:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reject file from oracle target
Replies: 11
Views: 2346

What Ken said.
by ray.wurlod
Tue Mar 14, 2006 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is there a BTEQ-equivalent PX stage?
Replies: 9
Views: 4250

Umm.. ask "them" to support Teradata in the Stored Procedure stage?

Sorry about the paucity of other ideas; I tried to be comprehensive the first time, and didn't check whether Teradata was supported for the SP stage.
by ray.wurlod
Tue Mar 14, 2006 11:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Opening a hash file in a custom transform routine, how?
Replies: 2
Views: 808

You can use a UNC pathname with OpenPath provided that the ALLOWNFS configuration tunable is set to 1. You may also be able to use the hostname!pathname convention, but I have no way of checking this at the moment - it may fail, because it will try to trigger UV/Net software (which isn't installed w...
by ray.wurlod
Tue Mar 14, 2006 11:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reject file from oracle target
Replies: 11
Views: 2346

Set your array size to 1 and your rows per transaction to 1. The link variables Arnd mentioned can then return the correct values, because your job is now sending one row at a time. So any returned error information is related specifically to that row.
by ray.wurlod
Tue Mar 14, 2006 11:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User defined ENV(environmental Variable)
Replies: 4
Views: 1321

When you use the expression editor to build the expression, and choose "job parameter" from the menu, you probably note that, in expressions, the surrounding "#" characters are not required. That you used them is probably what made the compiler complain.
by ray.wurlod
Tue Mar 14, 2006 11:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substr of Decimal
Replies: 7
Views: 2365

Real and dfloat are approximate representations of data. Decimal and numeric are exact representations. They are different data types, which is why you experienced what you did. My original response was based on your statement that the data type was Decimal.