Search found 15603 matches

by ArndW
Fri Jan 11, 2013 11:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file format validation
Replies: 3
Views: 1503

I'm not at a client now, but don't you get errors or warning messages through the parallel job sequential stage for the middle 2 records? You could automatically drop those or aboend the stage.
by ArndW
Fri Jan 11, 2013 7:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove special characters from XML file
Replies: 8
Views: 3395

What do you consider a "special" character?

Normally I'd say "sed" or "tr".
by ArndW
Fri Jan 11, 2013 5:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pass the value of a column as the filename
Replies: 2
Views: 1280

The filename for an output file must be either a constant or a parameter (or other variable or combination of types). Parameter values cannot be changed within a job, so you need to determine the filename through column values in a prior job, then pass that value to your job as a parameter. How you ...
by ArndW
Thu Jan 10, 2013 12:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: internal error
Replies: 5
Views: 4000

OK, keep with one node, it makes debugging easier.

How many columns are you using for your joining key?

If you keep your join key columns and just one column from the left and right link to your output (which should be a "peek" stage), does the error still remain?
by ArndW
Thu Jan 10, 2013 11:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I pass through columns in Aggregator?
Replies: 10
Views: 6713

In the drop-down list "available properties to add" where you select the "max" value, you can (and should) also choose "preserve type"
by ArndW
Thu Jan 10, 2013 2:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: internal error
Replies: 5
Views: 4000

Does the error still occur when you run the job in 1 node?
by ArndW
Wed Jan 09, 2013 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: multiple lookup condition
Replies: 2
Views: 1496

The results of one lookup cannot be used as values for another lookup within one lookup stage, you would need to use 2 stages in order to do that.
by ArndW
Wed Jan 09, 2013 1:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Character data to binary conversion
Replies: 6
Views: 2085

The "bitexpand" isn't inside DataStage, is it?
by ArndW
Wed Jan 09, 2013 1:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: internal error
Replies: 5
Views: 4000

Only the first part of the message, "Internal Error: (minIndex < m_outputLinkObjArraySize): pxbridge.C: 3741 " is important. I don't think a simple solution is available to describe the problem. You will have to do the iterative process of finding the cause. Is there anything in particular...
by ArndW
Tue Jan 08, 2013 11:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Character data to binary conversion
Replies: 6
Views: 2085

First I'd convert the Char(1) to a number using "Seq(In.Column)". Now it is a simple loop to convert this to a string of 1's and 0's. Which version of DS do you have, i.e. can you loop in transform stages? If not, then you might have to write a simple c++ function to do this. Alternatively...
by ArndW
Tue Jan 08, 2013 10:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'Line Feed' that doesn't disappear
Replies: 10
Views: 3259

What are your sequential file settings?
Also, since you are on unix, do an "od -x <file>" to see what the ascii code of the character in question really is, it might be an 0x00
by ArndW
Mon Jan 07, 2013 8:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Job in not completing.
Replies: 20
Views: 8499

$APT_PM_SHOW_PIDS, $OSH_DUMP, $OSH_ECHO can be used. Basically, all of the entries in the "reporting" category of the parameter list can be turned to to see if it helps narrow down the error.
by ArndW
Sun Jan 06, 2013 9:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sparse Lookup in DB2/UDB Enterprise Edition
Replies: 1
Views: 855

In the DB2 Connector stage in the top third, right-hand side, you have a drop-down box which lets you choose the lookup type.

In the DB2 Enterprise stage in the link source -> Lookup Type you can select a "sparse" type lookup.
by ArndW
Sat Jan 05, 2013 11:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DateGenericIsDate is NOT working
Replies: 13
Views: 6481

I tested it, and it fails. I don't have any docs to check whether this is expected behaviour or not, but I don't believe it is.
by ArndW
Sat Jan 05, 2013 10:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DateGenericIsDate is NOT working
Replies: 13
Views: 6481

It would seem that

Code: Select all

ICONV('20121231','D')
will correctly convert, while

Code: Select all

ICONV('20130102','D')
won't.