Search found 53125 matches

by ray.wurlod
Thu Dec 25, 2008 3:02 am
Forum: General
Topic: oracle stage error....
Replies: 3
Views: 1203

If DataStage server is installed on drive X, then X:\tmp

Substitute for X as required.
by ray.wurlod
Wed Dec 24, 2008 10:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Retaining First/Last Values of a Key Group
Replies: 11
Views: 1970

It would have been more efficient to sort once, either during extraction or ahead of the Copy stage.
by ray.wurlod
Wed Dec 24, 2008 10:51 pm
Forum: General
Topic: oracle stage error....
Replies: 3
Views: 1203

Do you have a folder called tmp (not temp) on the drive where DataStage server is installed?

If so, do you have write permission to that folder as the user that executes DataStage jobs?
by ray.wurlod
Wed Dec 24, 2008 7:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to empty a HASH file?
Replies: 12
Views: 3533

I wonder how you know that? Ah yes, California...

:lol:
by ray.wurlod
Wed Dec 24, 2008 6:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Retaining First/Last Values of a Key Group
Replies: 11
Views: 1970

Job type is marked as server

In a parallel job the First/Last functionality is provided by the Remove Duplicates stage.
by ray.wurlod
Wed Dec 24, 2008 6:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error on Range Lookup
Replies: 3
Views: 1585

There have been problems reported with particular data types. I can't recall the exact details, but a Search should find them.
by ray.wurlod
Wed Dec 24, 2008 6:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to empty a HASH file?
Replies: 12
Views: 3533

Correct terminology is HASHED file, not "hash" file.

To empty a hash file I imagine you would use a wire brush of some kind.

A hash file is a tool for shaping a block of hash.
by ray.wurlod
Wed Dec 24, 2008 2:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to empty a HASH file?
Replies: 12
Views: 3533

Re: how to empty a HASH file?

Simply you can add a transformer before hashed file and you can pass null values to the columns ... That is wrong. What you do is set up a constraint expression (such as @FALSE) that allows no rows at all to pass. If you send NULL to a key column you end up with a warning in the job log. You ought ...
by ray.wurlod
Wed Dec 24, 2008 2:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Retaining First/Last Values of a Key Group
Replies: 11
Views: 1970

The Aggregator stage itself will allow you to generate First and Last.

Moderator: please move to server forum
by ray.wurlod
Wed Dec 24, 2008 2:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in ODBC Enterprise stage
Replies: 2
Views: 1165

What is different between PROD and DEV servers? ("Nothing" is not the correct answer, clearly.) Concentrate particularly on how the connection to Netezza is configured, but allow that it might be something else.

How did you effect the migration?
by ray.wurlod
Wed Dec 24, 2008 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to minus one day from a give timestamp data
Replies: 9
Views: 3398

You will need to decompose your input timestamp into date and time components, adjust the date component, then reassemble. You do not have to convert to string (which is what Craig suggests) - there are functions such as TimestampToDate() that you can use.
by ray.wurlod
Wed Dec 24, 2008 2:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Ibm Interview question
Replies: 4
Views: 3413

That is something I refuse to do. I will, however, warn you that the interview question "cheat" sites that you might find on the internet are usually terrible, and contain answers that are patently wrong. The correct approach is training, study and experience using the product. You learned...
by ray.wurlod
Wed Dec 24, 2008 2:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC connectivity to datastage server
Replies: 6
Views: 2310

Many ODBC drivers (sourced from DataDirect) ship with DataStage; these are to be found in a directory called branded_odbc. There are plenty of "read me" files there. For any other connectivity you will need to obtain UNIX-based ODBC drivers; there are several vendors which a simple interne...
by ray.wurlod
Wed Dec 24, 2008 3:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Preserving the Sorting after FILTER stage
Replies: 6
Views: 1823

Actually we are getting review comments from the external contractors who are working as a DataStage professionals about removing the Sort stage. They are saying that Sort stage is not needed as the partition will be preserved. Partitioning and sorting are not the same thing. The comments are corre...
by ray.wurlod
Wed Dec 24, 2008 3:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Preserving the Sorting after FILTER stage
Replies: 6
Views: 1823

Re: Preserving the Sorting after FILTER stage

parag.s.27 wrote:Is it possible that after spliting the data the Stream 1 may get records in Un - Sorted manner and thus the Remove Duplicate stage will yield incorrect results?
No.
There is nothing in what you are doing that would affect the sorted order.