Search found 15603 matches

by ArndW
Tue Sep 15, 2009 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to do length validation of datatypes
Replies: 1
Views: 614

DataStage is the perfect tool to do this. One approach is to check lengths in a transform stage and if the length is incorrect direct it out to an error link otherwise to pass it on. Have you tried this approach?
by ArndW
Tue Sep 15, 2009 8:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: double quotes inside data
Replies: 7
Views: 2125

The appropriate question is not why it doesn't work in PX jobs but why it works (when it shouldn't) in Server jobs.
by ArndW
Tue Sep 15, 2009 7:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CPU resource utilization
Replies: 7
Views: 3228

If the %CPU use on the DataStage system during job run is not above 80% then your job is not CPU bound, but most likely I/O bound.
by ArndW
Tue Sep 15, 2009 6:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: double quotes inside data
Replies: 7
Views: 2125

[

Code: Select all

1,"company name ""super company""","company1"
is a WFF.

The server job is tolerant of this incorrect data format.
by ArndW
Tue Sep 15, 2009 6:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: double quotes inside data
Replies: 7
Views: 2125

DST - this is not a bug.

Code: Select all

"I am not " a well-formed sentence. But ""I"" am."
Embedded quotes must be doubled.
by ArndW
Tue Sep 15, 2009 3:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is there any way in DS to Encrypt the Data in a column?
Replies: 7
Views: 1831

What Ray has suggested is rather complex and involved; one must know c++ to program the encryption and also be able to bind that into a buildop in DataStage. In your case this would be quite a lot of work and not recommended; so the appropriate answer to your question would be "no, a single col...
by ArndW
Tue Sep 15, 2009 3:28 am
Forum: General
Topic: fatal error
Replies: 1
Views: 676

And if you post the complete error message someone here might be able to comment on it.
by ArndW
Tue Sep 15, 2009 3:27 am
Forum: General
Topic: Email- Error sending Mail
Replies: 6
Views: 2159

I think that you haven't received an answer to this question because the problem is not a DataStage one. If you were to use the command line interface to sendmail you would get the same error message, and it needs to be fixed by editing the mail configuration on the DataStage server machine.
by ArndW
Tue Sep 15, 2009 3:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: double quotes inside data
Replies: 7
Views: 2125

dnat - your source file is badly formed, the correct thing to do is to correct the file. If that is not possible then another option would work if you are certain that your column separator, the '|' symbol, does not occur in the data. In that case, don't use a quote character at all and read in the ...
by ArndW
Mon Sep 14, 2009 11:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to see the datastage logs from Director.
Replies: 10
Views: 4564

xmeta for log storage is only an option at 8.1, not before. I can't recall what the setting is to redirect logs, but chances are you don't have this turned on. In the project directory, do a "ls -al RT_LOG*" and see what the access rights are and if your datastage user has read and write a...
by ArndW
Mon Sep 14, 2009 11:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer error
Replies: 1
Views: 1459

The value of either EquipmentTypeAssociatedId or EquipmentTypeId is not a valid number at runtime. Since Server does not enforce data types this is quite possible.
by ArndW
Mon Sep 14, 2009 10:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading zoned decimals in DB2
Replies: 3
Views: 1521

Are you reading sequential files or DB2 tables? I ask because DB2 does not have zoned decimal, whereas COBOL structures in sequential files do.
by ArndW
Mon Sep 14, 2009 10:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with special character in joining
Replies: 1
Views: 552

Don't rely on implicit conversions, do an explicit conversion so that the join key is identically defined in the left and right sources. Then see if you still have problems.
by ArndW
Mon Sep 14, 2009 9:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Auto partitioning in join/merge stages
Replies: 10
Views: 4794

I think I like the idea of using an explicit sort stage as it gives the designer more control (i.e. limiting the sort memory, choosing the type of sort) but with unsorted data that needs repartitioning there is, as you've said, no real difference.
by ArndW
Mon Sep 14, 2009 9:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pad with Zeros
Replies: 3
Views: 1056

You will need to convert the number to a string. A simple way would be to declare a VarChar(8) field and the derivatio of

Code: Select all

Right('00000000':In.StageVar,8)