Search found 53125 matches
- Thu Jun 22, 2006 1:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Inserting Into BD2 Table
- Replies: 4
- Views: 1097
I fear - without being able to check - that that's the way that mainframe jobs work. Try re-designing the job to check for the existence of the primary key, and directing your links accordingly. Only attempt an insert if the primary key does not exist; otherwise either perform an update or discard t...
- Thu Jun 22, 2006 1:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem with performance
- Replies: 2
- Views: 676
- Thu Jun 22, 2006 1:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Urgent question: How to dynamic set file names parameter
- Replies: 9
- Views: 2013
Etiquette Note We don't do "urgent" here. This is an all-volunteer site; no-one gets paid for posting. We post as and when we can. Some of us are asleep when your need is urgent, if indeed it really is. If you want urgent response, sign up with your support provider and learn the true cost of "urge...
- Thu Jun 22, 2006 1:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Connection to Pervasive database
- Replies: 4
- Views: 1189
- Thu Jun 22, 2006 1:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to export DS Project
- Replies: 6
- Views: 1885
- Thu Jun 22, 2006 1:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: performance issue
- Replies: 7
- Views: 1421
Re: performance issue
We tested the sql code on oracle DB its running fine. It seems their is some problem with datastage server. Any tips of how to find the problem? What has changed in the meantime? If the DataStage job has not been changed clearly it can not be the culprit. What is the total other load on the machine...
- Thu Jun 22, 2006 1:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error Improper Datatype
- Replies: 10
- Views: 2131
- Thu Jun 22, 2006 1:10 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Aggregator Issues
- Replies: 6
- Views: 2794
Even though you know what you're doing, DataStage doesn't know that you know what you are doing, and still feels the need to warn you about possible conversion problems. You can not disable generation of these messages. You can, however, create message handlers to demote these messages to informatio...
- Thu Jun 22, 2006 1:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to increment surrogate key
- Replies: 9
- Views: 3845
The initial value must be obtained from somewhere, using select max(keyvalue) + 1 from table; which is a query that executes in sequential mode - no need for parallelism since it can only return one row. Do this in one job - perhaps even a server job - and capture the result into either a file or th...
- Thu Jun 22, 2006 1:00 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Schema File
- Replies: 5
- Views: 3248
Technically you did, through inaction, define the final delimiter and other properties. These have to appear in the schema file so that the record layout is properly understood. The mere fact that you chose to accept default values for these properties doesn't affect this need. However, record delim...
- Thu Jun 22, 2006 12:46 pm
- Forum: Site/Forum
- Topic: Inactive DSXchange users.
- Replies: 5
- Views: 2678
Lots of folks just lurk and learn - maybe too shy or not confident enough to post. I don't think we can assume that 0 posts = inactive. Perhaps >0 posts but none in the past three years would be a better indicator. What would be the most appropriate process - a private message and/or email suggestin...
- Thu Jun 22, 2006 12:44 pm
- Forum: Site/Forum
- Topic: ToolXchange?
- Replies: 4
- Views: 2203
- Thu Jun 22, 2006 4:36 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to increment surrogate key
- Replies: 9
- Views: 3845
- Thu Jun 22, 2006 3:45 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Same job with different functions
- Replies: 5
- Views: 969
If it's never been run before, "append" will create the new file. Otherwise you can include a Nested Condition activity to determine whether to truncate the file before running the remainder of the Job activities. This will have two outputs (yes and no); the yes goes into, say, an Execute Command ac...
- Thu Jun 22, 2006 3:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Accessing DB from DS routine
- Replies: 6
- Views: 1384
Why?!! You want to rewrite what DataStage already does? Why did you buy DataStage, then? There is a function library called the BASIC SQL Client Interface where DS BASIC routines can act as client programs to database servers, but it has one or two disadvantages, particularly the licensing cost of a...