Search found 4992 matches
- Fri Dec 16, 2005 11:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Project Moved, but not running
- Replies: 11
- Views: 2540
- Fri Dec 16, 2005 10:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Project Moved, but not running
- Replies: 11
- Views: 2540
- Fri Dec 16, 2005 10:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Prevent a Routine from Aborting a Job
- Replies: 5
- Views: 1019
You're doing something unsupported, using knowledge of the undocumented APIs. You have no control over what happens inside. There's no global solution, once inside that subroutine it can do anything it wants. Would you consider writing your own subroutine to clear the log? You're already doing thing...
- Fri Dec 16, 2005 9:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Prevent a Routine from Aborting a Job
- Replies: 5
- Views: 1019
Use all error trapping available on all commands. Failure to open a file should not allow processing to continue, letting a write to the file cause a failure. In fact, write failures can be trapped as well. Verify all of the DS BASIC functions/statements against the manual. There's only a handful of...
- Fri Dec 16, 2005 8:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Project Moved, but not running
- Replies: 11
- Views: 2540
You can't "move" a project. You can create a new project in a different location and import your jobs there, but you can't physically issue a "mv /fromhere/myproject /tothere/project. It screws up internal pointers inside the database. Don't ever do this again. To fix your problem, consider moving t...
- Fri Dec 16, 2005 8:28 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ExecDOSSilent/ExecSHSilent
- Replies: 2
- Views: 1083
- Fri Dec 16, 2005 8:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to write to DML's in User-defined query.
- Replies: 6
- Views: 1532
- Fri Dec 16, 2005 8:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: errortable validations
- Replies: 4
- Views: 1033
- Thu Dec 15, 2005 7:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: -14 DSJE_TIMEOUT
- Replies: 5
- Views: 3086
- Thu Dec 15, 2005 6:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: -14 DSJE_TIMEOUT
- Replies: 5
- Views: 3086
- Thu Dec 15, 2005 4:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Mass change of user id and password
- Replies: 7
- Views: 2662
1. As long as passwords aren't setup as encrypted, but strings, a mass text replace in the dsx should do the trick. You must recompile everything. 2. Parameter default values are okay to change, but you must recompile everything for those defaults to be effective. Just fix the problem once and for a...
- Thu Dec 15, 2005 3:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: problem with lookup
- Replies: 24
- Views: 5393
- Thu Dec 15, 2005 3:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: problem with lookup
- Replies: 24
- Views: 5393
us1aslam1us wrote:But I am just curious to know why suggestion#2 didn't work out?
You were trying to do something the more difficult way, and therefore had to more carefully design the job. I suspect something was not quite right. The solution used now is very easy to understand and not so complicated.
- Thu Dec 15, 2005 1:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: problem with lookup
- Replies: 24
- Views: 5393
- Thu Dec 15, 2005 12:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: problem with lookup
- Replies: 24
- Views: 5393
This is getting frustrating because we're talking in circles. The purpose of a multi-row lookup is: 1. Produce a product, meaning multiply your primary input stream by the referenced rows. Your initial request has ALWAYS been to produce more output than input. 2. Do a multiple choice selection from ...