Search found 42189 matches

by chulett
Thu Oct 16, 2008 11:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute multiple jobs using a sequence
Replies: 11
Views: 4318

You'd need to write your own looping job control as I don't see a Sequence being able to handle this gracefully unless you are willing to string 70 jobs together in a row. Another thought, a job that reads the filenames in from a flatfile along with the name of the job that processes it and calls th...
by chulett
Thu Oct 16, 2008 7:12 pm
Forum: General
Topic: How to add multiple Environment Variables ?
Replies: 7
Views: 2324

Suggest you start clicking... 7.x is a one-at-a-time world. :wink:
by chulett
Thu Oct 16, 2008 3:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number conversion
Replies: 18
Views: 5031

It worked all the other times, too. :wink:
by chulett
Thu Oct 16, 2008 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number conversion
Replies: 18
Views: 5031

Those zeroes are not significant. You have no control over how the data in a NUMBER field is stored internally in Oracle. You are arguing about an external representation, which is strictly an artifact of how you select the data. Try this: select to_char(YourField,'99999999.99') from YourTab...
by chulett
Thu Oct 16, 2008 2:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Revert back the original job
Replies: 5
Views: 1196

Ken? Is that you? :wink:
by chulett
Thu Oct 16, 2008 2:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number conversion
Replies: 18
Views: 5031

Again - what issue? Did the data not load or otherwise generate an error? Or does it just not look the way you'd like it to when you select it back from the database? If the latter, that's just an issue with your select, not the load. That's the difference I'm trying to see if you understand.
by chulett
Thu Oct 16, 2008 2:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Upgrading from DataStage 5 to DataStage 7 or 8
Replies: 4
Views: 1083

What "plug in"? :?
by chulett
Thu Oct 16, 2008 2:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Version of Oracle does DataStage 8 support and version 5 >
Replies: 1
Views: 853

Supports 10g.

What kind of "code" are you asking about when you say "DataStage 5 code"?
by chulett
Thu Oct 16, 2008 2:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number conversion
Replies: 18
Views: 5031

You don't have a problem. Seriously, what makes you think you do? :?
by chulett
Thu Oct 16, 2008 2:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number conversion
Replies: 18
Views: 5031

Sure, but there's no point for a NUMBER field. They aren't significant and Oracle doesn't need them. If you want to see them when you select the data back from Oracle, use an appropriate TO_CHAR() mask but worrying about that during your load is a complete waste of time. Or is this going into a VARC...
by chulett
Thu Oct 16, 2008 1:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number conversion
Replies: 18
Views: 5031

Suggest you let us know what your target is. If we're talking sequential file, then in spite of what you wrote the FMT function *is* the answer. For a database or anywhere else where those zeroes are not significant, don't even worry about doing this.
by chulett
Thu Oct 16, 2008 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to split the rows
Replies: 1
Views: 783

So, I'm guessing you think this would make a good FAQ and would like to discuss creating one? If not, please post this question in the proper forum based on the job type - in this case the PX forum.
by chulett
Thu Oct 16, 2008 1:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Revert back the original job
Replies: 5
Views: 1196

Unless you've got the previous version stashed off in SCCS or some other versioning / source code repository.
by chulett
Thu Oct 16, 2008 9:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: not compatible with parameter array binding
Replies: 5
Views: 3878

Don't use it. Those combo actions are a crutch IMHO, one that lets you lean on how easy they are to setup at the expense of speed. Prequalify updates v. inserts. Split your processing. Use dedicated insert and update links.