Search found 53125 matches
- Mon Jul 18, 2005 8:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: load multiformat seq file
- Replies: 12
- Views: 6310
That's a server job solution that's not really relevant in the parallel job environment unless you want to use a UNIX shell script to modify the text file in advance. In the parallel job the easiest way is to read the file with a Sequential File stage whose schema matches the detail record. The head...
- Mon Jul 18, 2005 4:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error while calling a job from Job Control Code
- Replies: 14
- Views: 6644
- Mon Jul 18, 2005 4:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: AS400
- Replies: 3
- Views: 847
.odbc.ini is simply where you set up ODBC data source names, with all the other information required by the driver. It's just how we used to have to do it with Windows 3.1 and earlier. You may also need to put a simple entry into the uvodbc.config file in your project, indicating that this data sou...
- Mon Jul 18, 2005 3:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: From Hash file to loading Table
- Replies: 9
- Views: 1674
- Mon Jul 18, 2005 3:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File size question
- Replies: 5
- Views: 1064
2 * 28 = 56, so I don't know where your 480MB comes from. Your product should yield 560,000,000. But that's just the overheads for storing the data, assuming complete packing. SPLIT.LOAD will guarantee that the file will never be more than 80% full. MINIMUM.MODULUS and LARGE.RECORD can also influenc...
- Mon Jul 18, 2005 3:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Way to decrease hash file size
- Replies: 5
- Views: 1122
- Mon Jul 18, 2005 3:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Lookup to multiple rows
- Replies: 4
- Views: 898
- Mon Jul 18, 2005 3:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Joining DB2 and a hash file
- Replies: 6
- Views: 1425
Welcome aboard! :D This is one of the fundamental techniques in DataStage. You create a link from your DB2 stage to a Transformer stage (this is the "stream input" link) then create a link from the Hashed File stage to the Transformer stage (this is the "reference input link"). As well as editing al...
- Mon Jul 18, 2005 3:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error while calling a job from Job Control Code
- Replies: 14
- Views: 6644
- Mon Jul 18, 2005 3:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: AS400
- Replies: 3
- Views: 847
- Mon Jul 18, 2005 3:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to assign values to parameters in jobs
- Replies: 7
- Views: 1772
- Mon Jul 18, 2005 3:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Failed to connect to host Error 80011
- Replies: 9
- Views: 2697
Welcome aboard! :D What happens if you try to connect with the Omit check box checked (which uses LAN Manager rather than TCP/IP)? If you have the clients installed on the server machine, try connecting to localhost (127.0.0.1) from them, with Omit cleared. This will help to confirm whether it's a n...
- Mon Jul 18, 2005 3:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: 50 WARNINGS PROBLEM IN NESTED SEQUENCES
- Replies: 3
- Views: 1002
- Mon Jul 18, 2005 2:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: From Hash file to loading Table
- Replies: 9
- Views: 1674
- Mon Jul 18, 2005 2:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multi-value fields and strange output file format
- Replies: 9
- Views: 2975
There are multivalued-handling equivalents of most intrinsic conversion functions and operators, usually constructed by adding "S" to the name. For example, IF becomes IFS (and a function), FIELD becomes FIELDS, GE becomes GES, OCONV becomes OCONVS, and so on. You may also need the REUSE function if...