Search found 53125 matches
- Mon May 08, 2006 3:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Avoid warnings when Wait for file Timeouts.
- Replies: 33
- Views: 15505
- Mon May 08, 2006 3:06 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sparse lookup
- Replies: 2
- Views: 976
- Mon May 08, 2006 12:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: active-to-active link problem
- Replies: 29
- Views: 6079
Even with Photoshop applying maximum sharpening, I can not read the labels on that job design. It is, nonetheless, clear that you have a circular design. -----> TransformerStage1 -----> ^ | | | | V HFStage1 HFStage2 ^ | | | | V -----> TransformerStage2 -----> which will never work. Please post a lar...
- Mon May 08, 2006 12:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help in setting Null value..
- Replies: 9
- Views: 3881
- Mon May 08, 2006 12:12 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem while viewing DB2 stage
- Replies: 1
- Views: 763
- Mon May 08, 2006 12:11 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Couting number records coming from DB2 table
- Replies: 5
- Views: 1209
select count(*) from table should be quite cheap to execute, because it should be able to be resolved with a single read from system table. One solution to the question would be a job sequence containing two jobs and an intermediate Routine activity to determine the link row count from the first jo...
- Sun May 07, 2006 2:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Function to find get Next Date
- Replies: 3
- Views: 1482
And strip out the delimiters in the generated date.
Code: Select all
Oconv(Iconv(yourDate, "DYMD") + 1, "DYMD[4,2,2]" : @VM : "MCN")- Sun May 07, 2006 2:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multi lingual excel file
- Replies: 2
- Views: 1071
- Sun May 07, 2006 2:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Internal Tables
- Replies: 11
- Views: 10842
The tables that comprise the repository are deliberately incompletely described. "They" reserve the right to change them, and do so at most major releases. Further, some tables contain multiple record structures. On this forum, and by inspecting Kim Duke's ETL toolkit, you can find out pretty much a...
- Sun May 07, 2006 2:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: active-to-active link problem
- Replies: 29
- Views: 6079
- Sun May 07, 2006 2:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: problem with look up
- Replies: 3
- Views: 1688
- Sun May 07, 2006 2:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: active-to-active link problem
- Replies: 29
- Views: 6079
Actually, it's not complete, as we can't tell which way data flow with respect to the Hashed File stage hash1. The circularity to which Arnd refers is in the Hashed File stage hash2 - it can not open its outputs until its input is closed. Is there any reason this can't be done as two jobs - one to p...
- Sun May 07, 2006 2:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Avoid warnings when Wait for file Timeouts.
- Replies: 33
- Views: 15505
- Sat May 06, 2006 3:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Importing multiple schema files
- Replies: 3
- Views: 855
- Sat May 06, 2006 2:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Quit the sequencer if file not found
- Replies: 3
- Views: 1357
Use an ExecuteCommand activity to execute dir command, and check its exit status. It should be non-zero if no file exists to match your wildcard. Use a Routine to do the same thing. Open the folder as if it were a table and count the file names matching your wildcard. (You will need to Change() the ...