Search found 53125 matches

by ray.wurlod
Thu Aug 05, 2010 1:51 am
Forum: General
Topic: Datastage Challenge
Replies: 7
Views: 2016

I imagine it's possible, but have not given any thought to how. Depends to some extent on what you mean by "dynamic" and whether you allow QualityStage stage types into the mix.
by ray.wurlod
Wed Aug 04, 2010 9:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle turning a space into a null
Replies: 14
Views: 3265

If its Server what steps should be taken? Essentially posting the question in the Server forum. As a general rule - maybe even a universal rule - the APT... environment variables are not heeded by server jobs. However if you're using an Oracle Connector stage in a server job, then they may be - it'...
by ray.wurlod
Wed Aug 04, 2010 9:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle turning a space into a null
Replies: 14
Views: 3265

Yes, otherwise how would Oracle know which blank to preserve?
:lol:
by ray.wurlod
Wed Aug 04, 2010 9:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Missing character sets on DS server
Replies: 7
Views: 7083

And that is true, in general. Non-NLS can transmit byte values faithfully.

So what's different between the two servers, or the two databases?

Use a Peek stage (or compile in trace mode) to determine whether the accented characters are getting in to DataStage in the first place.
by ray.wurlod
Wed Aug 04, 2010 9:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to get the last word after space
Replies: 4
Views: 2236

For example, if DCount() were not in the DSParams file, which did happen in one point release. Or if DCount() has been removed from DSParams.
by ray.wurlod
Wed Aug 04, 2010 9:32 pm
Forum: Enhancement Wish List
Topic: DataStage Parameters
Replies: 9
Views: 16761

You can "sort of" achieve this with stage variables in a Transformer stage early in the job.
by ray.wurlod
Wed Aug 04, 2010 9:30 pm
Forum: Enhancement Wish List
Topic: Parameter files.
Replies: 2
Views: 8215

Could you post an example? I think I know what you mean, but am not totally sure.
by ray.wurlod
Wed Aug 04, 2010 5:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplicates of logical key loaded into dimension table
Replies: 13
Views: 5083

the client's standards dictate the maximum transparency The BASIC language is easily understood - the "B" in "BASIC" stands for "Beginners'" after all. Resist stupid requirements! Standards are a fine thing, when used intelligently. Try not to work for Vogons in your n...
by ray.wurlod
Wed Aug 04, 2010 5:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To remove previous job logs
Replies: 11
Views: 3126

They do. It's a training class coded DX437.
by ray.wurlod
Wed Aug 04, 2010 5:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Missing character sets on DS server
Replies: 7
Views: 7083

The ones you mentioned earlier are for Oracle, not for DataStage.

If you are using UTF-8 or any other non-ASCII character set, might I suggest that you install DataStage with NLS?
by ray.wurlod
Wed Aug 04, 2010 4:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: seperation of data
Replies: 2
Views: 1105

DSXchange is not a mobile telephone. Please do not use SMS-style abbreviations.
by ray.wurlod
Wed Aug 04, 2010 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Typeconversion in Modify giving warning
Replies: 4
Views: 3417

Code: Select all

outputFieldName:int64=decimal_from_string(inputFieldName)
by ray.wurlod
Wed Aug 04, 2010 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Download file with the DataStage
Replies: 6
Views: 2275

And yet, curiously, I don't think it's the right answer. WISD is for when you want to expose a DataStage job as a web service.

I believe you need to investigate either the Web Services Client stage or the Java Client stage, depending on exactly how you want to retrieve the document.
by ray.wurlod
Wed Aug 04, 2010 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Missing character sets on DS server
Replies: 7
Views: 7083

Then you should have no character sets at all.
by ray.wurlod
Wed Aug 04, 2010 4:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to get the last word after space
Replies: 4
Views: 2236

If DCount() is identified as invalid when you validate the expression, use Count() instead.

Code: Select all

Field(YourField," ",Count(YourField," ")+1,1)