Search found 53125 matches

by ray.wurlod
Wed Nov 22, 2006 11:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserted value too large for column, row rejected.
Replies: 8
Views: 2846

Maybe, but DataStage (in server jobs) does not enforce things like maximum length for VarChar, so it doesn't bite till you get to the INSERT/UPDATE statement.
by ray.wurlod
Wed Nov 22, 2006 10:57 am
Forum: General
Topic: number of running instances of DataStage Version Control
Replies: 8
Views: 5266

Plan to phase out Version Control. It does not exist in Version 8.0, and will not be incorporated in future releases. Instead some means of integrating with "regular" SCCS tools, like ClearCase, will be implemented, possibly in version 8.2.
by ray.wurlod
Wed Nov 22, 2006 10:53 am
Forum: Site/Forum
Topic: Happy Thanksgiving.
Replies: 7
Views: 3599

... but not quite so relevant outside the USA.

Thank you for the thought.
by ray.wurlod
Wed Nov 22, 2006 8:06 am
Forum: Enhancement Wish List
Topic: About Parallel Lookup
Replies: 5
Views: 2684

That it's here will mean that DSXchange will forward it to IBM. If you wish, you can also raise a formal enhancement request through your support provider.
by ray.wurlod
Wed Nov 22, 2006 8:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator stage performance
Replies: 24
Views: 8753

Are the data pre-sorted when they are written to the Data Sets? If so, include an explicit Sort stage ahead of the Aggregator, and specifically make the sort rule for the key columns "Don't Sort (Previously Sorted)". This will prevent DataStage from inserting tsort operators. View the score to see t...
by ray.wurlod
Wed Nov 22, 2006 8:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation error for Tranformer in windows
Replies: 3
Views: 931

Only the error message permits cogent diagnosis.
by ray.wurlod
Wed Nov 22, 2006 7:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change DS Server machine IP address
Replies: 7
Views: 2202

Sorry, I was a bit terse. I meant, given that the question is about changing IP address, why did you give an unqualified answer about changing the machine name?
by ray.wurlod
Wed Nov 22, 2006 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ask me for password when trying to start up DS Server
Replies: 10
Views: 2743

What has changed? "Nothing" is not the correct answer.
by ray.wurlod
Wed Nov 22, 2006 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserted value too large for column, row rejected.
Replies: 8
Views: 2846

Example: your column is Char(12) and your data length is greater than 12.
Example: your column is Number(7) and your data value contains more than 7 digits.
by ray.wurlod
Wed Nov 22, 2006 7:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: When is a NULL not a NULL?
Replies: 9
Views: 2535

Char(0) is not NULL, it is NUL. It is a valid character from Control Set 0. NULL is "the value that means unknown" and is different in different databases. Internally in DataStage it is represented using Char(128). When reading/writing sequential files you specify how NULL is represented. Len(Char(0...
by ray.wurlod
Wed Nov 22, 2006 7:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change DS Server machine IP address
Replies: 7
Views: 2202

ArndW wrote:DataStage itself would need to be reinstalled only when changing the machine name.

Why?

And if only the IP address is changed, even that ought to be unnecessary.
by ray.wurlod
Wed Nov 22, 2006 7:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Operator Role problem
Replies: 13
Views: 3254

The Operator role can only run RELEASED jobs. It's a major restriction, which is why hardly anyone makes use of that role, and why IBM has put in the SuperOperator role in version 8.0.
by ray.wurlod
Wed Nov 22, 2006 7:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: capture* files in /tmp directory
Replies: 6
Views: 2825

And sometimes you do it without explicitly progamming it. DSExecute() uses this technique to capture the output, as do the before/after subroutines ExecSH, ExecDOS and ExecUV.
by ray.wurlod
Wed Nov 22, 2006 7:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedure
Replies: 19
Views: 3636

That's the idea, provided that the data types match.
by ray.wurlod
Wed Nov 22, 2006 7:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Viewed data is different from data being processed
Replies: 10
Views: 3240

That's very odd; DataStage itself does not use Select List #10. Are you sure it wasn't Select List #0?