Almost certainly, and it happened to occur on the second node in your configuration file.
Disable operator combination (set APT_DISABLE_COMBINATION) and re-run to determine in precisely which stage the error is being generated.
Search found 53125 matches
- Sat Apr 21, 2007 2:27 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: APT_Decimal::asInteger: the decimal value is out of range
- Replies: 5
- Views: 5650
- Sat Apr 21, 2007 2:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: OBDC Lookup Performance
- Replies: 3
- Views: 1070
Of course you can use a hashed file. Seven million is not so many rows. You may even be able to fit it in a standard hashed file (up to 2GB of data). Be selective about what columns you load into the hashed file and what rows you load into the hashed file - only load the ones you need. If you still ...
- Sat Apr 21, 2007 2:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to open hash file
- Replies: 13
- Views: 6100
- Sat Apr 21, 2007 2:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To improve job performance.
- Replies: 5
- Views: 971
This is not a DataStage issue - it's the time required by Informix to effect the GROUP BY. Until all the rows are processed (so that all the groups can be determined) Informix can not deliver any rows. Yet the clock is still running, so rows/sec appears low. It is not a useful metric. What else is h...
- Sat Apr 21, 2007 2:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Spliting Strings - Stage Variable or Routine
- Replies: 10
- Views: 2134
- Sat Apr 21, 2007 2:12 am
- Forum: General
- Topic: How to Handle primary key null handling
- Replies: 4
- Views: 1354
- Fri Apr 20, 2007 4:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: dimension and fact build
- Replies: 6
- Views: 1710
Real dimensional models in the business world seem to contain between 4 and 15 dimensions. Models with only 2 or 3 dimensions are rare, and often lend the suspicion that more dimensions should be added to the design, if only the designer would stop and think. Models with 20 or more dimensions, for ...
- Fri Apr 20, 2007 4:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Abort sequence if particular job status=2
- Replies: 4
- Views: 1923
That is not an innate capacity of the job sequence, in which "failed" means only "aborted". You could design a job sequence that explicitly tested the exit status of J2, and decided whether to re-run it. This could be done with a Nested Condition activity. J2 would need to be marked "do not checkpoi...
- Fri Apr 20, 2007 4:21 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: oracle stage properties (remote server)
- Replies: 20
- Views: 7664
- Fri Apr 20, 2007 4:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: To hide warning messages in Datastage parallel edition
- Replies: 9
- Views: 7176
- Fri Apr 20, 2007 4:17 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Dataset dummy file
- Replies: 4
- Views: 1239
- Fri Apr 20, 2007 4:15 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Trailing Spaces in Unix
- Replies: 7
- Views: 2537
Re: This solution is already given.....
Hey , Use the below command : when to save ur file in Unix do this : :%s/ctrlv+m// means colon then % ,then s then / ,then control v and controll m ,then double slash enjoy Grammatical Note Ur was a city in ancient Babylon. Please use correct English pronouns such as "your" here. Would you use "ur"...
- Fri Apr 20, 2007 4:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to read redefines using parallel complex flat file stage
- Replies: 10
- Views: 2730
- Fri Apr 20, 2007 4:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Spliting Strings - Stage Variable or Routine
- Replies: 10
- Views: 2134
Welcome aboard. :D You can use Fmt(InLink.TheString, "25T") The "T" format is "text" - it breaks on whole words. The Fmt() function inserts a "text mark" (@TM) at each division - you can convert this to anything you require, for example a newline, using Convert() for single character or Ereplace() f...
- Fri Apr 20, 2007 4:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Compatibility of Decimal value between Hashed File and UV
- Replies: 4
- Views: 796
Did you write the value using a UniVerse stage, or using a Hashed File stage? Writing using a Hashed File stage and reading using a UniVerse stage can cause the scale to be interpreted as a "scaling factor". UniVerse tables treat Numeric and Decimal identically, but for some reason always throw this...