Search found 53125 matches
- Fri Jul 14, 2006 12:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to see jobs in the repository
- Replies: 3
- Views: 924
Design objects, whether for server, parallel or mainframe jobs or job sequences, are all stored in the same location, namely DS_JOBOBJECTS. Similarly, routines whether server or (interludes to) parallel routines, are all stored in one place, namely DS_ROUTINES. The point is that index corruption can...
- Fri Jul 14, 2006 11:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing parameter to Job Activity in a Job Sequence
- Replies: 5
- Views: 2273
- Fri Jul 14, 2006 11:31 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Leading 0's
- Replies: 34
- Views: 15859
- Fri Jul 14, 2006 11:29 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Invocation ID
- Replies: 21
- Views: 3718
- Fri Jul 14, 2006 11:26 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: error Could not find input field "Col1".
- Replies: 9
- Views: 3648
- Fri Jul 14, 2006 6:00 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Complex Lookup
- Replies: 5
- Views: 1318
PX isn't really geared to non equijoin lookups. None of the Lookup, Join or Merge stages supports any technique other than exact key match. The string_lookup_from_int32 function for the Modify stage also does an exact key match. How are the source data stored? Possibly your best solution would be to...
- Fri Jul 14, 2006 5:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dynamic File
- Replies: 4
- Views: 1184
- Fri Jul 14, 2006 5:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Check Points in DataStage jobs
- Replies: 7
- Views: 4882
That kind of checkpointing is not automatic; you have to design it in. Keep track (maybe in a hashed file, which is destructively overwritten, maybe by tagging each inserted record) of what has been committed, so that when you need to restart you can determine how far you got last time. Remember tha...
- Fri Jul 14, 2006 5:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal termination of stage / Error 911
- Replies: 4
- Views: 3644
- Fri Jul 14, 2006 5:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Backwards job compatibility
- Replies: 5
- Views: 2032
You can try changing the internal version number in the dsx file (from 50 to 36 for example) to correspond to the internal version number in jobs in each version. Most things will then import, though with warnings (the new functionality will necessarily be discarded). No guarantees, and you may need...
- Fri Jul 14, 2006 5:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Runnig a script in datastage
- Replies: 17
- Views: 4144
- Fri Jul 14, 2006 5:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: error Could not find input field "Col1".
- Replies: 9
- Views: 3648
- Fri Jul 14, 2006 5:25 am
- Forum: Site/Forum
- Topic: Ascential DeveloperNet sunsetting this month
- Replies: 20
- Views: 10678
- Thu Jul 13, 2006 9:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error calling subroutine (Ascential DS Server Version 7.1)
- Replies: 14
- Views: 7224
- Thu Jul 13, 2006 9:02 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: aggregator stage
- Replies: 3
- Views: 938
No, but only because it's illegal SQL (not a DataStage issue). You need HAVING instead of WHERE. That said, your metadata (table definition) requires one Integer column whose derivation is COUNT(*) and four other columns to match the other columns in your query. Note that, in some databases, Count(C...