Search found 42189 matches
- Mon Jun 11, 2007 12:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Set/Get Stage variables?
- Replies: 15
- Views: 8164
Re: Set/Get Stage variables?
I have searched the forum, and I have been unable to find a DS Server Edition BASIC code snippet for setting and getting stage variables inside a routine / function. I know this must be a simple process, since it is referred to in many posts, but I have not been able to locate it on DSExchange... I...
- Mon Jun 11, 2007 10:29 am
- Forum: General
- Topic: Using DSJ.LINKROW
- Replies: 4
- Views: 1518
No, negative numbers are error codes. And a -6 means:
See the $DSHOME/include/dsapi.h file.
Code: Select all
#define DSJE_WRONGJOB -6 /* Job for this JobHandle was not started from a call to DSRunJob by the current process. */See the $DSHOME/include/dsapi.h file.
- Mon Jun 11, 2007 10:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: problem with converting to 64 bit hash file
- Replies: 5
- Views: 1401
- Mon Jun 11, 2007 10:22 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Tivoli Schedule
- Replies: 9
- Views: 5791
Batch files, shell scripts - same thing. I have contacted the tivoli scheduling team and they have said that it will not be possible for them to set up the status on a case-by-case basis. I find that very hard to believe. Sometimes that boils down to the fact they either don't know how to do it or s...
- Mon Jun 11, 2007 9:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error with Routine
- Replies: 3
- Views: 862
Keep in mind the fact that a Routine is expected to return a 0 status upon successful completion, whereas a job never will but will return a 1,2,3 (etc) instead. And if you have automatic error handling turned on in the Sequence any non-zero routine status will be considered to be an 'unhandled fail...
- Mon Jun 11, 2007 9:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Tivoli Schedule
- Replies: 9
- Views: 5791
- Mon Jun 11, 2007 8:26 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Releasing jobs in PX environment
- Replies: 6
- Views: 2699
- Mon Jun 11, 2007 7:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error with Routine
- Replies: 3
- Views: 862
- Mon Jun 11, 2007 7:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To speed up the aggregator
- Replies: 15
- Views: 5784
karrisuresh wrote:always sort the data before it is sent to aggregator
As noted, there is more to it than that. You also have to assert the sorted order in the stage so it knows you've done this. And hopefully you've sorted in such a manner that supports the grouping being done, otherwise it's all for naught.
- Mon Jun 11, 2007 7:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Rundate
- Replies: 3
- Views: 863
- Mon Jun 11, 2007 7:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: extracting required string from routine return value
- Replies: 11
- Views: 2434
- Mon Jun 11, 2007 7:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extracting required string from routine's return value
- Replies: 4
- Views: 1206
- Mon Jun 11, 2007 7:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Rows/Sec
- Replies: 13
- Views: 4161
Well... you are severely hampered in your 'tuning' ability if you "can't change the job design". Those direct database lookups (which it sounds like are being done twice) are the worst performant way the job could have been designed. 45 minutes to an hour to process 700 records is pretty bad. About ...
- Mon Jun 11, 2007 6:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to add one year to a given date
- Replies: 13
- Views: 3302
- Mon Jun 11, 2007 6:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: TO clear entries in log
- Replies: 5
- Views: 1587
That setting in the Administrator is the default setting for the Project and only affects new jobs created after the option was enabled. Ken Bland has a suite of Job Control Utilities available for free download from his website, one of which is a little job to set the auto-purge information across ...