Search found 53125 matches

by ray.wurlod
Sun Sep 25, 2011 2:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Funnel Issue
Replies: 5
Views: 2565

They're not the same. Check not only the metadata in DataStage but also the metadata in Oracle and remember that it's nullability that you're checking, not data type (though that has to be the same too).
by ray.wurlod
Sun Sep 25, 2011 2:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NUL Values
Replies: 7
Views: 3619

By "[NUL]" do you mean those five characters, do you mean the ASCII NUL character (Char(0)), or do you mean something else (and, if so, what)?
by ray.wurlod
Sat Sep 24, 2011 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performace Issue
Replies: 5
Views: 1458

You could change the system clock while the job is running. :lol: You really have not provided enough information to attempt cogent diagnosis - we have no idea what you are trying to do with those Transformers and Oracle connections, nor whether you're doing it efficiently. Nor even why you want to ...
by ray.wurlod
Sat Sep 24, 2011 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem using sort stage
Replies: 6
Views: 2224

There is no problem at all using consecutive Sort stages, I have one example that uses three. Could this be an issue of improper partitioning? I am guessing that you are using a two-node configuration and Auto partitioning. This is not correct to achieve what you want to achieve.
by ray.wurlod
Sat Sep 24, 2011 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job monitoring warning
Replies: 5
Views: 1947

Re: Job monitoring warning

dsscholar wrote:From today only it happens.
What is different "today"? Note that "nothing" is not the correct answer.
by ray.wurlod
Sat Sep 24, 2011 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: operator combination
Replies: 6
Views: 6492

Definitely "maybe". There are too many other factors. Disabling operator combination is primarily to address systems that are CPU bound (processors being asked to do too much work because two many operators have been combined into one). But it's fair to say that this could also lead to an ...
by ray.wurlod
Fri Sep 23, 2011 7:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to replace nulls with space in CFF stage
Replies: 8
Views: 2239

To challenge the data requirement document is the correct course of action.

Yes of course you can remove them - maybe Trim() maybe Convert(). But it's an incorrect requirement to start with. Educate the authors about not requesting things that are just plain wrong. It will help you in future!
by ray.wurlod
Fri Sep 23, 2011 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS conversion issue
Replies: 11
Views: 2454

What does "delimiter not found" suggest to you?
by ray.wurlod
Fri Sep 23, 2011 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to replace nulls with space in CFF stage
Replies: 8
Views: 2239

The internal representation of NULL is Char(128). The ASCII NUL character is Char(0). Your "strange character" is probably one of these.
by ray.wurlod
Fri Sep 23, 2011 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling SQL server stored procedure from datastage.
Replies: 23
Views: 19545

If EXECUTE doesn't work, try CALL.
by ray.wurlod
Fri Sep 23, 2011 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: operator combination
Replies: 6
Views: 6492

The ability to be combinable can be set in individual stages on the Advanced tab. Global operator combination can, as Craig notes, be set using the appropriate environment variable, which I always add to parallel jobs as a parameter.
by ray.wurlod
Fri Sep 23, 2011 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Peek stage and OCI stage
Replies: 7
Views: 2808

Setting array size to 0 logically transfers all records at once, but the network still breaks that mass of data into packets so any gain would be insignificant.

Array size has nothing at all to do with execution mode or read mode.
by ray.wurlod
Fri Sep 23, 2011 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Statisical/Six-Sigma Rules/formulas in DataStage
Replies: 3
Views: 1097

No it doesn't, but it would be easy enough to create them. Certainly accumulate totals, sums and sums of squares etc. and then just plug those into the requisite formulae. I've done this with skewness and kurtosis in the past. Alternately you can construct Build stage(s) to do exactly what you requi...
by ray.wurlod
Fri Sep 23, 2011 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to check the no. of nodes while running the job in UNIX?
Replies: 1
Views: 773

The answer to your first question is either "none" (nodes are a logical construct, they don't occur "in UNIX") or "all of them" (the number of nodes is as defined in your parallel execution configuration file). Which ones are "working" (whatever that means) ca...
by ray.wurlod
Fri Sep 23, 2011 3:45 pm
Forum: General
Topic: Help with uvconfig parameters
Replies: 10
Views: 9256

The size of the group latch table is GSEMNUM x GLTABSZ and the size of the record lock table is GSEMNUM x RLTABSZ. Usually, when one is increased, the other is decreased so that the total amount of memory remains (approximately) unchanged. By increasing just one you took the size of the memory image...