Search found 53125 matches

by ray.wurlod
Fri Dec 15, 2006 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Linux 8 way maxs all procs - box to become unresponsive
Replies: 4
Views: 1099

Larger data volumes? That it "ran OK on the four CPU box" suggests that, if nothing else has changed, then either a larger data volume is the cause, or that other things were occurring at the same time on the eight CPU box. You need to check both. Unfortunately, you have destroyed all the evidence (...
by ray.wurlod
Fri Dec 15, 2006 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Link Rowcount
Replies: 3
Views: 2338

DSGetLinkInfo() returns accurate counts, totalled over all partitions if the DSJ.LINKROWCOUNT argument is used, or individually (as a comma-delimited list) if the DSJ.INSTROWCOUNT argument is used. (These from memory, please check.) The latter is useful to determine the effects of re-partitioning.
by ray.wurlod
Fri Dec 15, 2006 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error compiling parallel transformer
Replies: 2
Views: 3089

The crux of the problem is in this event.
Notice: The Early Access serial number will expire in -7 days.
In order to purchase the product, visit http://www.sun.com/forte/buy.html
or contact your Forte Tools reseller.


Your compiler licence "free period" appears to have expired. Contact Sun for a replacement.
by ray.wurlod
Fri Dec 15, 2006 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS values.
Replies: 6
Views: 1580

Not necessarily. The pseudo-map NONE may work better.
by ray.wurlod
Fri Dec 15, 2006 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation error of Transformer stage
Replies: 11
Views: 6567

Surely you mean

Code: Select all

If IsNull(DSLink3.F1) Then SetNull() Else DSLink3.F1+5
by ray.wurlod
Fri Dec 15, 2006 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding peculiar problem when using DRS STAGE
Replies: 7
Views: 1414

That means that there's something wrong with either the connection information or the authentication information, the way the database client software is configured, or possibly that the database server is not accessible or unavailable. You will need to do the detective work. It is not possible from...
by ray.wurlod
Fri Dec 15, 2006 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Comparing CFF files , Record to Record !
Replies: 11
Views: 3068

Do you have Enterprise Edition? There are better tools in parallel jobs. In a server job, you're up for a lot of stage variables and hand-coding.
by ray.wurlod
Fri Dec 15, 2006 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieve duplicate records
Replies: 3
Views: 958

I posted an answer (a job design) to this very question earlier today.
by ray.wurlod
Fri Dec 15, 2006 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage server install issue
Replies: 1
Views: 2890

Error code: 2 2 usually means that you have not licensed the product or that your licence has expired. Under these conditions the engine will still start, but will not be useable. A good way to verify that this is the case is to attempt to establish a telnet connection and enter the DataStage envir...
by ray.wurlod
Fri Dec 15, 2006 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding peculiar problem when using DRS STAGE
Replies: 7
Views: 1414

Look in the log, to see whether there are 89 warnings. Check the Transformer stage, to ensure that there is no constraint expression preventing rows from being forwarded to the target. 0 rows/sec means that the stage finished in less than 0.5 seconds. Seconds are rounded to integer, and divide-by-ze...
by ray.wurlod
Fri Dec 15, 2006 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSSendMail Does Not Execute or Hangsl
Replies: 5
Views: 2627

Could the hang be occurring in your email software (SMTP client) rather than in DataStage? Can you try to send mail from the DOS command line, to see whether the same problem occurs?
by ray.wurlod
Fri Dec 15, 2006 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: lookup on hash file
Replies: 7
Views: 1268

Enable write cache when (re-)populating your hashed file. It makes a notable difference.
by ray.wurlod
Fri Dec 15, 2006 3:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validating email id field
Replies: 13
Views: 3643

Syntactic validation (which can be done) is not the same thing as certification (which, as far as I am aware, can only be done by trial and error, and still requires the destination mail server to be up). There is nothing in DataStage or QualityStage for performing email address certification. Does ...
by ray.wurlod
Fri Dec 15, 2006 3:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Save doublon
Replies: 22
Views: 5972

The following design will help. HashedFileStage1 and HashedFileStage2 refer to the same hashed file. HashedFileStage1 HashedFileStage2 | ^ | |(not found) V | -----> TransformerStage ------------> SequentialFile (found) The hashed file will contain the first occurrence of each key val...
by ray.wurlod
Fri Dec 15, 2006 3:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unique Value For Each Job Run
Replies: 3
Views: 845

Invent a name for the sequence of unique numbers, and use one of the key management (get next value) routines from a Routine activity in the controlling job sequence.