Search found 42189 matches

by chulett
Fri Nov 12, 2004 5:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Message
Replies: 6
Views: 1647

First check I'd make is to ensure you haven't run out of space wherever you have DataStage installed.
by chulett
Fri Nov 12, 2004 5:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generating key depending on another key
Replies: 2
Views: 666

This is pretty straight-forward to solve. Use a pair of Stage Variables to do a check for repeating groups: First one is your counter, start it at 1. Second one is your 'old' value of col1, start it at a value that doesn't exist in your source. A question mark, perhaps. When a row comes in and the c...
by chulett
Fri Nov 12, 2004 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: routine to write into a file
Replies: 2
Views: 668

Use the SEEK command. There's an example in this post that should help.
by chulett
Thu Nov 11, 2004 6:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Small Integer to Date
Replies: 8
Views: 3378

Without going into tons of detail right now - DataStage Server Edition 'uses' BASIC, DataStage Enterprise Edition (EE/PX) 'uses' C++ as its foundational language. Are they all the same thing? Yes, in the sense that they are all programming languages. What is the difference? They are different progra...
by chulett
Thu Nov 11, 2004 6:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Defining Constraints in Transformer Stage
Replies: 13
Views: 12759

There's nothing different about the way a constraint is defined for character versus numeric data. You code an expression that evaluates to True or False and the row either is passed out through the constrained link or not, respectively. You may be having an issue with the nature of the data you are...
by chulett
Thu Nov 11, 2004 8:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Basic WriteSeq
Replies: 20
Views: 7732

No worries. I know how that happens, especially with these multi-page wonders where you miss something from an earlier page. :D
by chulett
Wed Nov 10, 2004 10:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Run px on windows
Replies: 7
Views: 2666

kcbland wrote:There's also no warp-drive engine, time travel machine, or cure for the common cold.

Patience, Buckaroo. As noted, it's not all that far off. :wink:
by chulett
Wed Nov 10, 2004 9:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: new line generated at the end of the source file
Replies: 5
Views: 1187

Windows server, Ray, otherwise I would have gone through some of that earlier. :wink:
by chulett
Wed Nov 10, 2004 9:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export -- xml vs .dsx format
Replies: 15
Views: 10293

Agreed. You really shouldn't have any jobs so large that they require multiple developers to work on different parts of them. We manage many projects as well, it's currently around 15, primarily divided by subject area. We also have common jobs and routines, but there are rules in place for where th...
by chulett
Wed Nov 10, 2004 8:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic RDBMS vs. Oracle9i Stage
Replies: 8
Views: 1997

Wrong thread, Vince. :wink:
by chulett
Wed Nov 10, 2004 8:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export -- xml vs .dsx format
Replies: 15
Views: 10293

We will need the ability to merge changes made by different developers to the same datastage job. Curious how you are managing this. Version Control doesn't support this functionality because DataStage doesn't either. Only one developer can have a job open at any given time, so unless you are going...
by chulett
Wed Nov 10, 2004 6:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JOb Sequencer Error
Replies: 7
Views: 2242

Welcome! :D Which version of 7.x do you have? From (I believe) 7.1 forward, there is an option on the Job Properties tab of Sequencers to add restart checkpoints. It will give you the ability to do what you want 'automagically' without all the goofy coding needed in earlier versions. Make sure you r...
by chulett
Wed Nov 10, 2004 11:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Custom Trigger code in Sequence
Replies: 5
Views: 1755

Excellent! :wink:
by chulett
Wed Nov 10, 2004 11:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: floating point decimal not fully supported
Replies: 2
Views: 813

Try changing your definition to Decimal(40). :? Works for Server, not sure about PX.
by chulett
Wed Nov 10, 2004 8:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Custom Trigger code in Sequence
Replies: 5
Views: 1755

Ok, silly question time... why can't the Sequencer simply run Job2? What functionality does Job1 provide other than running Job2? Depending on how Job1 is designed, it may be able to check on the status of Job2 itself and, if there is a problem, drop a warning of some kind in its own log. The Sequen...