Search found 53125 matches

by ray.wurlod
Thu Mar 26, 2009 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job disappear
Replies: 1
Views: 952

It can be run in the command window of Administrator, which you will already have connected to a specific project.

You must have exclusive access to the project.
by ray.wurlod
Thu Mar 26, 2009 2:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File FILE_NAME option
Replies: 3
Views: 1091

Could this be another 8.0 bug? It works ok in 7.5.1.
by ray.wurlod
Thu Mar 26, 2009 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Optimal Heap Space Allocation
Replies: 2
Views: 847

Welcome aboard. Each operator in each job takes only what it needs. You do not allocate any space; the requests are built in to the operators. Nothing in DataStage takes "the full allocation regardless of need". Therefore you already have optimal allocation. Your issue is one of total load...
by ray.wurlod
Thu Mar 26, 2009 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: copy rows based on input column value!
Replies: 7
Views: 1996

Re: copy rows based on input column value!

samplify wrote:Thanks in advance! (and hope its not a UNIX solution!)
I'd be inclined to write a before-job subroutine (or just a routine to be invoked from a Routine activity in a sequence).
by ray.wurlod
Thu Mar 26, 2009 2:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job not aborting in case of primary key violation error
Replies: 4
Views: 1396

In a TRANSFORMER stage downstream on the reject link.
by ray.wurlod
Thu Mar 26, 2009 2:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Deletion Error
Replies: 4
Views: 4755

If you choose Overwrite as the Data Set write method it is deleted and re-created. You can verify this by inspecting the score.
by ray.wurlod
Thu Mar 26, 2009 2:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt regarding Datastage String Function
Replies: 3
Views: 3095

No, because I don't currently have access to Enterprise Edition.

YOU try it, and let us know. I can only guess.
by ray.wurlod
Thu Mar 26, 2009 2:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: awk in execute command activity
Replies: 9
Views: 3927

Because that's how whoever write the Execute Command activity wrote it.

You may as well ask why we need to have the SELECT clause first in SQL, even though the FROM clause is parsed first.
Why can't we write

Code: Select all

FROM table SELECT columns WHERE condition;
by ray.wurlod
Thu Mar 26, 2009 2:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Performance
Replies: 9
Views: 3478

Why that particular number?

If 10,000 is good, why not 10 million? Should be 10,000 time better, shouldn't it?

Do you understand precisely what this Array Size parameter does?
by ray.wurlod
Thu Mar 26, 2009 2:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help to identify the datastage process in the Task Manager
Replies: 4
Views: 1865

We don't do "urgent". DSXchange is an all-volunteer site whose members post as and when they can, usually only if they have something constructive to contribute. If you want "urgent" support (and I question that you acually "need" it in this case) sign up with your sup...
by ray.wurlod
Thu Mar 26, 2009 4:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job not aborting in case of primary key violation error
Replies: 4
Views: 1396

Add a reject link to handle the row rejected by the database, and set the row limit on this link to 1.
by ray.wurlod
Thu Mar 26, 2009 3:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator performance
Replies: 9
Views: 2618

If you can arrange to have your source data sorted by the five grouping columns, and advise the Aggregator that this is the case, your execution time for that stage will reduce by orders of magnitude.
by ray.wurlod
Thu Mar 26, 2009 3:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt regarding Datastage String Function
Replies: 3
Views: 3095

Try it and find out, and let us know. My guesses (since I'm not in a position to try) would be indeterminate for the Compare() functions because I don't know what the value of EXSTCRR_TRANS.MW is. Once you've done a Trim() you have a string, so you don't actually need the Compare() function - you're...
by ray.wurlod
Thu Mar 26, 2009 1:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to retrieve months between two dates of different years
Replies: 7
Views: 2001

You can't have that without business rules. Do you mean inclusive or exclusive counting? Ultimately these will mean one or two extra adjustments of plus or minus one in the formula, but you must get them nailed down lest we waste time giving you wrong advice.
by ray.wurlod
Wed Mar 25, 2009 11:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to retrieve months between two dates of different years
Replies: 7
Views: 2001

What's the answer?

The solution will depend on your business rules for handling situations where the day number is not the same in the two dates.