Which one of those two numbers is incorrect?nansekar wrote:Our requirement is to migrate a application from DS 7.1 to DS 7.1
Search found 42189 matches
- Fri Nov 22, 2013 8:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help Required in Installing XML Adapter and CDC in 7.1
- Replies: 3
- Views: 3183
Re: Help Required in Installing XML Adapter and CDC in 7.1
- Thu Nov 21, 2013 9:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Issue when Importing Metadata from oracle table..
- Replies: 11
- Views: 3247
- Thu Nov 21, 2013 4:30 pm
- Forum: General
- Topic: Trigger DS job from a table
- Replies: 7
- Views: 1266
- Thu Nov 21, 2013 3:18 pm
- Forum: General
- Topic: Datastage scheduler versus cron scheduling
- Replies: 7
- Views: 2710
- Thu Nov 21, 2013 10:08 am
- Forum: General
- Topic: Datastage scheduler versus cron scheduling
- Replies: 7
- Views: 2710
- Thu Nov 21, 2013 9:15 am
- Forum: General
- Topic: Extract of log file using DSGetLogEntry not working
- Replies: 31
- Views: 7284
- Wed Nov 20, 2013 11:43 pm
- Forum: General
- Topic: Extract of log file using DSGetLogEntry not working
- Replies: 31
- Views: 7284
Another thing - you have a list of event ids. You can't simply use that in the for loop as the from and to values... it's a list after all. Count how many entries are in the list and then loop from 1 to Count and use the loop counter to pull the Nth event id from the list and then get the log entry ...
- Wed Nov 20, 2013 10:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: TimeStamp with Microsecond
- Replies: 6
- Views: 2788
- Wed Nov 20, 2013 10:51 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Issue when Importing Metadata from oracle table..
- Replies: 11
- Views: 3247
- Wed Nov 20, 2013 5:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Testing for empty file condition in Server Job
- Replies: 16
- Views: 7449
The job itself won't care and will happily process an empty file. However, because no rows are flowing through the job you can't use a condition inside the job to abort it. What Andy posted is cleanest and makes what is going on much more obvious / visible to the casual observer. You could do someth...
- Wed Nov 20, 2013 2:47 pm
- Forum: General
- Topic: Extract of log file using DSGetLogEntry not working
- Replies: 31
- Views: 7284
There's nothing more for me to post. Right now I'm suggesting that as a debugging aid you add calls to DSLogInfo() to your routine to see the data you are working with. Write the LogList value to the log after you fetch it. Write vEventDetail to the log after you fetch it. Etc. They'll help you figu...
- Wed Nov 20, 2013 8:19 am
- Forum: General
- Topic: Passing parameter with spaces to Execute Command Stage
- Replies: 12
- Views: 5023
See if this helps.
- Wed Nov 20, 2013 8:17 am
- Forum: General
- Topic: Extract of log file using DSGetLogEntry not working
- Replies: 31
- Views: 7284
- Tue Nov 19, 2013 9:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Surrogate Key Generator - Database Sequence (Oracle) Error
- Replies: 3
- Views: 1716
- Tue Nov 19, 2013 5:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sort is failing
- Replies: 3
- Views: 2137
Your sort stage worked just fine, it's just the expectation of getting sorted output from the hashed file that was incorrect. Due to the destructive nature of hashed file key handling (duplicates are not allowed and last one in survives) the order records are written to the hashed file can be critic...