Search found 53125 matches
- Thu Sep 01, 2005 5:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: parallel job issue
- Replies: 6
- Views: 1370
- Thu Sep 01, 2005 5:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Terdata to DB2 lookup
- Replies: 5
- Views: 1027
- Thu Sep 01, 2005 5:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Commit size using ODBC Stage
- Replies: 3
- Views: 921
- Thu Sep 01, 2005 5:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Iconv and Oconv
- Replies: 4
- Views: 2167
Iconv() is an exceptionally clever function. For dates all it needs is the day month year ordering (and not even that if the date is ordered correctly for your locale).
Therefore an elegant solution is
Therefore an elegant solution is
Code: Select all
Iconv(EndDate, "DYMD") - Iconv(StartDate, "DYMD")- Thu Sep 01, 2005 5:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Only part of a job runs???
- Replies: 5
- Views: 1135
- Thu Sep 01, 2005 5:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: hash key lookup with an EXTRA key ...
- Replies: 5
- Views: 1135
- Thu Sep 01, 2005 5:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routines
- Replies: 6
- Views: 1296
- Thu Sep 01, 2005 5:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routines
- Replies: 6
- Views: 1296
- Thu Sep 01, 2005 5:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: concatatination of 3 files
- Replies: 9
- Views: 2196
- Thu Sep 01, 2005 4:57 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: COMPILATION ERROR
- Replies: 3
- Views: 1300
- Thu Sep 01, 2005 4:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Oracle Enterprise Stage - Update / Insert rowcount
- Replies: 5
- Views: 2150
- Thu Sep 01, 2005 4:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Differences between Server and Parallel Extender
- Replies: 2
- Views: 1559
It depends. Given that one of your criteria is to use all the partitioning and parallelism available in server jobs, I'd be happy to assert that a highly competent server job developer could create a set of jobs that would finish more quickly than a set of parallel jobs created by a less competent d...
- Thu Sep 01, 2005 4:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warning - "Sequential file cannot preserve partion"
- Replies: 9
- Views: 4727
- Wed Aug 31, 2005 10:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: writing a message from a transform into job log
- Replies: 6
- Views: 2084
- Wed Aug 31, 2005 8:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Terdata to DB2 lookup
- Replies: 5
- Views: 1027
Because you are performing a lookup against a partial key or secondary key, it is possible that more than one row might be returned. The DB2 stage is not equipped to return multiple rows on a reference lookup, so generates the message. You have three choices. Use an ODBC stage, which does have multi...