Search found 53125 matches

by ray.wurlod
Fri Apr 27, 2007 6:13 pm
Forum: General
Topic: Storage calculation
Replies: 2
Views: 1163

Re: Storage calculation

Anybody can guide me to calculate storage required for working files? What to consider for calculating disk space required for staging, temp, hash, reject files etc. I also want to know space requrements for each project. Please send back any questions, if my inquiry is not clear. How long is a pie...
by ray.wurlod
Fri Apr 27, 2007 1:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Internal Archirecture of DATASTAGE PX
Replies: 3
Views: 1072

Welcome aboard. They were originally separate products (Ascential's DataStage server and Torrent's Orchestrate parallel execution environment) and are radically different architectures. Much could be written about each architecture and almost no overlap would occur. Is there anything specific you ar...
by ray.wurlod
Fri Apr 27, 2007 1:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Code for funtion 'GetEnvironment'
Replies: 7
Views: 1738

I believe its just an interlude to the system function getenv().
by ray.wurlod
Fri Apr 27, 2007 1:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while Hash file creation
Replies: 6
Views: 3514

Is H:\ a network drive? I don't believe it's possible to use mkdbfile to create a hashed file on a network drive.
I'm also a little concerned about how there is a double "\" in the pathname.
by ray.wurlod
Thu Apr 26, 2007 5:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what goes to oracle enterprise stage's reject
Replies: 25
Views: 8346

The row from the input link plus an extra column called sqlcode.
by ray.wurlod
Thu Apr 26, 2007 4:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Where did I go wrong?
Replies: 20
Views: 4999

Have you thought about creating a separate index on each key column?
by ray.wurlod
Thu Apr 26, 2007 4:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we export joblog to a file
Replies: 27
Views: 11793

The jobs write to CSV files. You open these with Excel. Voila!
by ray.wurlod
Thu Apr 26, 2007 4:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Spliting Strings - Stage Variable or Routine
Replies: 10
Views: 2134

For efficiency you might evaluate FMT(L1.ORG_NM,"25T") once in a stage variable rather than three times in expressions.
by ray.wurlod
Thu Apr 26, 2007 4:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Upgrade Question
Replies: 4
Views: 880

One (at least) needs to be an "-itag" installation.
by ray.wurlod
Thu Apr 26, 2007 4:32 pm
Forum: General
Topic: Importing Sequential File Definitions
Replies: 4
Views: 2920

Taking the ELSE clause with Status() returning 0 indicates that the file is opened for writing, but does not exist. Check that /projectds/Operator/files/File_Special.txt exists, that components in the path are correctly spelled and cased, and that the executing user has sufficient rights to access t...
by ray.wurlod
Thu Apr 26, 2007 4:30 pm
Forum: General
Topic: non english character in transformer stage
Replies: 4
Views: 1757

UniChar(x) returns the character whose Unicode code point is x. You use it in a Transformer stage expression.
by ray.wurlod
Thu Apr 26, 2007 1:00 am
Forum: General
Topic: non english character in transformer stage
Replies: 4
Views: 1757

By the time they get into DataStage, they have been mapped to Unicode code points. You may need, therefore, to use the UniChar() function to specify the character from which to convert.
by ray.wurlod
Thu Apr 26, 2007 12:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Aggretaor
Replies: 10
Views: 2188

We keep advising you to use sorted data. 30 million rows is not too many. Even a UNIX sort can manage this many. The Aggregator stage with unsorted input will almost always abort with this much data, but will not with sorted input.
by ray.wurlod
Thu Apr 26, 2007 12:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to generate a 4 digit surrogate Key
Replies: 3
Views: 1416

In version 7.5 and earlier the Surrogate Key Generator supports up to uint32 - that is, a 10-digit key. You can satisfy yourself that this is so by inspecting the stage type properties. In version 8.0 there is support for uint64 in the Surrogate Key Generator stage. Row Generator stage works in sequ...
by ray.wurlod
Thu Apr 26, 2007 12:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting error in a job using Aggregator
Replies: 8
Views: 2096

With presorted data you won't need big buffers.