Search found 53125 matches
- Mon Mar 01, 2004 3:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to read this file
- Replies: 9
- Views: 3154
Splitting the file into three outputs is easy. Read the file with a sequential file stage with one VarChar column defined. Define a Transformer stage with three outputs. Constraint expressions are: Matches "0X' '1N0N" (question and sequence) Matches "1N0X" (response option) Matches "1A0X" (question ...
- Mon Mar 01, 2004 2:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: [Resolved]Poor Performance high CPU%
- Replies: 16
- Views: 4740
- Mon Mar 01, 2004 2:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problems creating large hash files
- Replies: 14
- Views: 4948
As soon as your data looks like getting near to 2GB (even 1.5GB for a safety margin), you can't readily use the default dynamic hashed files; you must switch to 64-bit addressing (or Distributed files, which is an entirely different topic, and you don't get memory caching). Ideally, then, you should...
- Sun Feb 29, 2004 11:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: [Resolved]Poor Performance high CPU%
- Replies: 16
- Views: 4740
- Sun Feb 29, 2004 7:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ODBC Error - Informix - AIX
- Replies: 3
- Views: 2490
- Sun Feb 29, 2004 7:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to migrate data stage jobs into production environment
- Replies: 6
- Views: 5134
- Sat Feb 28, 2004 5:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: BuilOP
- Replies: 2
- Views: 1071
The obvious one is to research smarter algorithms. For example if your 1500 iterations per row processed is to determine whether something exists in an array, contemplate more efficiently searched data structures. Even exiting the loop as soon as something has been found, rather than completing all ...
- Sat Feb 28, 2004 5:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: manufacturing data
- Replies: 6
- Views: 1891
- Sat Feb 28, 2004 5:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Zero filling integers
- Replies: 0
- Views: 502
Zero filling integers
A recent post (m) suggested this code as a means of generating a month with a leading zero. realMonth=right('0':jMonth, 2) In this case, jMonth was a separate column. Possibly a better method is to use Fmt(jMonth,"R%2") which handles the case that jMonth has more than two c...
- Sat Feb 28, 2004 6:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Starange Problem
- Replies: 9
- Views: 2442
- Sat Feb 28, 2004 6:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Read only Environments
- Replies: 14
- Views: 3224
- Sat Feb 28, 2004 6:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Batch Job for deleting a hash file
- Replies: 11
- Views: 3055
- Sat Feb 28, 2004 6:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ODBC Error - Informix - AIX
- Replies: 3
- Views: 2490
- Sat Feb 28, 2004 6:18 am
- Forum: Infosphere Master Data Management
- Topic: RazzaDS and Date/Time dimensions [Razza]
- Replies: 2
- Views: 8885
Doesn't really make sense. Typically you populate your date dimension well into the future. About the only thing that would ever change would be the holiday information - unless a Pope gets the notion to fiddle with the calendar again! So the date dimension should require little if any updating. IMHO.
- Fri Feb 27, 2004 3:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Read only Environments
- Replies: 14
- Views: 3224
From Administrator client Command window or in a telnet session in the DataStage environment in your project, execute the following commands. Commands are case sensitive; you need all upper case as shown. Job designs UPDATE DS_JOBOBJECTS SET READONLY = 'RO' WHERE READONLY = 'NRO'; Routines UPDATE DS...