Search found 42189 matches
- Wed Sep 16, 2009 5:33 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Curious about IIS Server, WAS Server and others...
- Replies: 7
- Views: 4269
- Wed Sep 16, 2009 5:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage client install on Shared Environment
- Replies: 3
- Views: 939
- Wed Sep 16, 2009 10:32 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Need to sum the values in columns
- Replies: 13
- Views: 2873
- Wed Sep 16, 2009 9:28 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error Passing selection list in sql IN clause as parameter
- Replies: 5
- Views: 2405
- Wed Sep 16, 2009 9:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage job error
- Replies: 15
- Views: 5043
i checked/unchecked the FILE HEADER check box...i found no change in the file output... Well, then you are either confused or not doing what you think you are doing. If you write 263 data records to a flat file with that 'header' boxed unchecked, you'll have 263 records in the target file. With tha...
- Wed Sep 16, 2009 6:56 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Version compatibility query
- Replies: 2
- Views: 1534
- Wed Sep 16, 2009 6:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Rules in transformer for deleting rows
- Replies: 9
- Views: 2148
OK... does 'deleted in Database B' mean actually gone / deleted / no longer there or is it more of a logical deletion by setting a flag? Assuming the former, worst case you could build a reference hashed file of B invoices and then stream them in from A, sending a delete transaction back to A if the...
- Wed Sep 16, 2009 6:39 am
- Forum: General
- Topic: Configuring LDAP Authentication on IBM Information Server 8.
- Replies: 0
- Views: 1631
- Tue Sep 15, 2009 10:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unrecognized Argument
- Replies: 3
- Views: 1828
OK. First you need to ensure both servers are configured identically and correctly and that you installed all of the optional plugins that you need in Production. After that I would suggest you start by creating a small test job in production with minimal stages and getting that to work before you w...
- Tue Sep 15, 2009 10:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unrecognized Argument
- Replies: 3
- Views: 1828
- Tue Sep 15, 2009 4:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get ranking for same points...
- Replies: 6
- Views: 1879
- Tue Sep 15, 2009 3:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get ranking for same points...
- Replies: 6
- Views: 1879
OK. Stage variables are evaluated in order, which is a key concept. That lets you use them to hold a value from a previous row and compare it to the current row's value. For example: Variable Derivation Initial Value svMarksChanged Link.TotalMarks <> svPrevMarks @FALSE svPrevMarks Link.TotalMarks &q...
- Tue Sep 15, 2009 2:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get ranking for same points...
- Replies: 6
- Views: 1879
No, just stage variables. A search here for 'rank' should turn up a number of recent conversations as September seems to be Ranking Month around here. Track the rank in a stage variable and only increment it when the 'total marks' value changes, and when you do increment it, increment it by the numb...
- Tue Sep 15, 2009 1:05 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: heap size
- Replies: 1
- Views: 2940
- Tue Sep 15, 2009 10:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: reset job command
- Replies: 3
- Views: 1498
I try to avoid unnecessary work. :wink: I was worried that it might actually reset it when it didn't need to, but hadn't tried it on a job that wasn't aborted to see. From inside job control code, you can use the DSPrepareJob() function regardless and it will handle the 'if necessary' part internall...