Search found 53125 matches
- Mon Sep 01, 2008 3:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to Use Userdefine Environment Variables into the Dsjob c
- Replies: 6
- Views: 2883
What does "not working" mean in this context? What error message is generated? Why are you setting $LegacyDBUserID for each of the three parameters? That's almost certain not to be correct. Have you proven that each of these environment variables is set? For example echo $LegacyDBUserID Have you tri...
- Mon Sep 01, 2008 2:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to find the Memory usage
- Replies: 4
- Views: 1371
- Mon Sep 01, 2008 1:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To Extarct first string
- Replies: 5
- Views: 1464
- Mon Sep 01, 2008 1:34 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to find the Memory usage
- Replies: 4
- Views: 1371
Windows Task Manager (in which you can select what you want to see on the Processes tab - DataStage jobs and active stages run uvsh.exe). Windows Performance Monitor. There are "hooks" available from DataStage server jobs into the Windows performance monitor, but these are only five counters of thin...
- Mon Sep 01, 2008 12:32 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Deadlock detected while inserting into Oracle table
- Replies: 6
- Views: 4010
- Mon Sep 01, 2008 12:32 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to create player error
- Replies: 1
- Views: 2762
- Sun Aug 31, 2008 3:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Lookup on reference data and transformations.
- Replies: 4
- Views: 1322
You basically do the same thing in a parallel job. Set the Lookup Failed rule in your Lookup stage to Continue then, in the downstream Transformer stage, test whether the key looked up is null (assuming that it can't be null otherwise). The other tests you would build into constraint or output colum...
- Sun Aug 31, 2008 2:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: simulating cross join
- Replies: 3
- Views: 1438
No. A hashed file accessed via a Hashed File stage can only return that row that matches its primary key value. And even with a UniVerse stage you'd have to use some pretty hairy user-defined SQL, for example WHERE CAST(? AS VARCHAR) LIKE '%' in the SELECT statement, to return every row for each inp...
- Sat Aug 30, 2008 6:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dsexport.exe
- Replies: 3
- Views: 1783
IF the default answer is Y (which I'm unable to ascertain for dsexport at the moment), then you can use this trick to deliver an infinite number of "Enter" presses. Redirect stdin from NUL (which is /dev/null if you're on UNIX).
Code: Select all
dsexport options < .\NUL- Sat Aug 30, 2008 4:16 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to see the data from DB2 Enterprise Stage ..
- Replies: 3
- Views: 1590
- Sat Aug 30, 2008 4:27 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to see the data from DB2 Enterprise Stage ..
- Replies: 3
- Views: 1590
- Sat Aug 30, 2008 4:25 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Teradata enterprise stage
- Replies: 3
- Views: 1080
- Sat Aug 30, 2008 4:22 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: reset job from command prompt
- Replies: 4
- Views: 1539
- Sat Aug 30, 2008 4:20 am
- Forum: Site/Forum
- Topic: Run Time Error for PX Routine
- Replies: 2
- Views: 4390
- Fri Aug 29, 2008 5:30 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Oracle Enterprise Stage
- Replies: 10
- Views: 2072
Commit after complete load is achieved by setting rows/transaction to 0. Restart has to be designed - you have to keep records about how many rows were successfully sent to Oracle, or select these from the Oracle table before (as part of) the restart run. Facilitate this by keeping track of which jo...