Have you considered the Merge stage to read the two files, then running the result through a sort?
Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
Search found 53125 matches
- Tue Sep 23, 2003 4:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sort/Merge not giving me the Right result.
- Replies: 2
- Views: 535
- Tue Sep 23, 2003 1:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: TCL Language
- Replies: 4
- Views: 1557
- Mon Sep 22, 2003 9:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: TCL Language
- Replies: 4
- Views: 1557
All UniVerse manuals can be found on the IBM web site.
http://www-3.ibm.com/software/data/u2/universe
Possibly the best manuals for DataStage are those for UniVerse release 9.6, which are at
http://www-3.ibm.com/software/data/u2/p ... index.html
Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
http://www-3.ibm.com/software/data/u2/universe
Possibly the best manuals for DataStage are those for UniVerse release 9.6, which are at
http://www-3.ibm.com/software/data/u2/p ... index.html
Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
- Mon Sep 22, 2003 8:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: run Jobs via Telnet connect.
- Replies: 4
- Views: 626
telnet is different on UNIX and Windows. On UNIX, telnet is an operating system service, so you could use dsjob directly after connecting. On Windows, telnet is a DataStage service (dstelnet), so you would need to escape to an operating shell to execute dsjob. For example: DOS /C "dsjob ..." As you ...
- Sat Sep 20, 2003 7:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Weird hash file behavior
- Replies: 5
- Views: 876
Would really need to see both jobs to make any accurate diagnosis. Why not do separate exports of each, and compare the DSX files using diff? This might reveal the awful truth, whatever it is. The behaviour is redolent of UniVerse behaviour when trying to process a non-existent Select List; all reco...
- Fri Sep 19, 2003 8:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: AS400
- Replies: 1
- Views: 1109
Once I was involved with exposing DB2/400 tables on DB2 on an RS6000. One of the things we found was that, because every file on the AS400 is a table, it was vital to specify a filter on table names before connecting, otherwise the connection awaited the gathering of every single file name on the AS...
- Fri Sep 19, 2003 8:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Deleting hash files (2)
- Replies: 12
- Views: 2067
For this approach to work, you will need to have used a pattern to the names of your hashed files, and they will have to have been created with CREATE.FILE in the local account. Otherwise you will need to adjust the code to use DELETE.FILE, DROP TABLE or rm (or del) as appropriate. If there is no pa...
- Fri Sep 19, 2003 8:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Setting User Status
- Replies: 4
- Views: 1016
You can only retrieve a job's user status while you have a handle to the job (that is, the job is attached). You may need to re-attach the job to achieve this. The DSGetJobInfo() function is how you retrieve the job's user status value. Check out the help or the manual for full details. Then take a ...
- Fri Sep 19, 2003 8:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Very simple code...I thought
- Replies: 3
- Views: 719
IF, most of the I/O statements and a number of other statements can be in "single-line format" or "multi-line format". The rule that governs it can be stated as follows: If the clause-introducing keyword (for example ON ERROR, LOCKED, THEN or ELSE) is the final word on the line in which it appears, ...
- Fri Sep 19, 2003 8:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Look up to Hash File
- Replies: 5
- Views: 557
- Fri Sep 19, 2003 8:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Parallel Extender
- Replies: 5
- Views: 903
- Fri Sep 19, 2003 8:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Look up to Hash File
- Replies: 1
- Views: 415
The whole point of a hashed file is to perform an equi-join on the primary key. This value is passed through a hashing algorithm to generate the physical address of where the record in question is stored, without the need to consult an index nor to perform a table scan. This is an extremely fast str...
- Thu Sep 18, 2003 10:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Parallel Extender
- Replies: 5
- Views: 903
Are you asking the question as a newbie to DataStage, or someone who has been using server jobs in the past? The number 1 difference is that you must do a bit more planning, related to resource allocation and data partitioning. From these plans you construct your configuration files (you may have di...
- Thu Sep 18, 2003 7:27 pm
- Forum: IBM QualityStage
- Topic: Weights
- Replies: 5
- Views: 3902
Weights
Can anybody accurately differentiate agreement/disagreement weights and match weights? In INTEGRITY SuperMATCH output, once records are blocked, you see some form of composite weight beside EVERY record. Is this the match weight and, if so, why is there one beside the XA records? Surely an XA record...
- Thu Sep 18, 2003 6:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Slowly Changing Dimensions
- Replies: 2
- Views: 2046