Search found 53125 matches
- Mon Jan 30, 2006 11:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Configuring DB2 db
- Replies: 1
- Views: 778
- Mon Jan 30, 2006 5:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Acknowledgement or error message
- Replies: 3
- Views: 1390
- Mon Jan 30, 2006 5:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Sequencer
- Replies: 12
- Views: 3185
- Mon Jan 30, 2006 5:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Throwing error while connecting to DS Designer
- Replies: 6
- Views: 1687
- Mon Jan 30, 2006 5:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Sequencer
- Replies: 12
- Views: 3185
Prefer DataStage constants. "They" may change the actual values.
Code: Select all
JobActivityName.$JobStatus = DSJS.RUNOK Or JobActivityName.$JobStatus = DSJS.RUNWARN- Mon Jan 30, 2006 5:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: inserting oracle warnings in a field in target
- Replies: 7
- Views: 1888
If Oracle does not generate the information you are going to have to do a whole lot of testing to ensure that constraints aren't violated (and so on) before sending the row to Oracle. And if you're going to go to that amount of trouble, you may as well reject the row straight away rather than sendin...
- Mon Jan 30, 2006 5:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error compiling Job Control Subroutine [Job name]
- Replies: 12
- Views: 4906
- Mon Jan 30, 2006 5:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: where can i execute these commands
- Replies: 5
- Views: 1651
- Mon Jan 30, 2006 5:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Value field of selection criteria of CFF
- Replies: 8
- Views: 2142
- Mon Jan 30, 2006 4:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Phantom Warning Message
- Replies: 8
- Views: 2887
- Mon Jan 30, 2006 4:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: getting row count for passive stages
- Replies: 3
- Views: 1171
- Mon Jan 30, 2006 4:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Should we use store Proc in DataStage.
- Replies: 6
- Views: 1622
- Mon Jan 30, 2006 4:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reg LinkRowcount
- Replies: 7
- Views: 1506
Correction from my side regarding the way the job looks like, actually the link for the sequential file is coming from transformer not from the source. which i couldnt represent here. thanks rajesh Wrap your diagram in code tags, and use Preview to get it right. SOURCE ---> TRANSFORMER-----> DATABA...
- Mon Jan 30, 2006 4:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Assigning the output of DSExecute command to job Parameter
- Replies: 4
- Views: 1968
- Mon Jan 30, 2006 4:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Joining A sequential file and Database table
- Replies: 11
- Views: 2791
A lookup IS a join. A lookup is a left outer join, in that it returns NULL if the lookup does not succeed. You can convert this to an inner join by constraining the Transformer output to only those rows for which the lookup succeeded. However it is not possible to achieve a full outer join (or a Car...