Search found 53125 matches
- Mon Nov 07, 2005 6:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequencer problem
- Replies: 4
- Views: 1831
Your terminology is confusing; you refer to routines but your words suggest that they are job activities. If they are routines, then the trigger can be based on the return value being 0 (OK) or otherwise (not OK). If they are job activities, then make the trigger from SeqSA to SeqODS an OK trigger. ...
- Mon Nov 07, 2005 6:39 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: why this fatal won't abort a job???
- Replies: 10
- Views: 3108
You are not losing any data when this message appears. All that is happening is that DataStage is being forced to use disk because there is not enough virtual memory available. I agree with Arnd that it should not be a Fatal message. Do check your ulimit settings for the user ID that processes DataS...
- Mon Nov 07, 2005 6:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: CDC Stage
- Replies: 10
- Views: 5898
- Mon Nov 07, 2005 2:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: problem with db2 stage
- Replies: 5
- Views: 1361
- Mon Nov 07, 2005 2:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sql Server Errors
- Replies: 3
- Views: 916
- Mon Nov 07, 2005 2:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performing Outer join in Server jobs
- Replies: 4
- Views: 1338
- Mon Nov 07, 2005 2:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: failed to read the row.
- Replies: 3
- Views: 1487
- Mon Nov 07, 2005 2:22 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error viewing the data(Null Archive)-Urgent
- Replies: 8
- Views: 3341
- Mon Nov 07, 2005 2:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: why this fatal won't abort a job???
- Replies: 10
- Views: 3108
- Mon Nov 07, 2005 2:16 am
- Forum: IBM QualityStage
- Topic: QualityStage running on server remote to DataStage
- Replies: 2
- Views: 2367
- Sun Nov 06, 2005 2:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: help me urgently
- Replies: 6
- Views: 1784
- Sun Nov 06, 2005 2:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Help! Passing parameters to Datastage Job from a text file.
- Replies: 6
- Views: 7542
Given that you have no apparent capacity for coding, I would suggest the following approach. 1. A server job to read the parameter names (as keys) and values into a hashed file. The name of the parameter file can be passed as a job parameter. 2. A User Variables activity in a job sequence that uses ...
- Sun Nov 06, 2005 12:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: String to Decimal convertion errors
- Replies: 4
- Views: 2808
- Sun Nov 06, 2005 12:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Help! Passing parameters to Datastage Job from a text file.
- Replies: 6
- Views: 7542
- Sat Nov 05, 2005 2:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performing Outer join in Server jobs
- Replies: 4
- Views: 1338
Anything in the Table Name field becomes the FROM clause in the SELECT statement in Generated SQL. You can quite happily put things like #Schema#.Employee T1 LEFT OUTER JOIN #Schema#.EmployeeDependent T2 ON T1.EmployeeID = T2.EmployeeID into the Table Name field. If you use aliases like that, make s...