Search found 42189 matches

by chulett
Sat Jan 05, 2008 10:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dynamically generation sequential file
Replies: 14
Views: 3992

Not sure anyone will just hand over a working routine for you. How much coding experience do you have? It wouldn't be all that hard to write what you need in BASIC, but it will take a bit of research to know all of the functions and syntax you'd need. From a high level, I'd think you could do someth...
by chulett
Sat Jan 05, 2008 9:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: oracle rollback datastage
Replies: 6
Views: 2219

Re: oracle rollback datastage

Is this scenario can be met with the datastage Just for the record, this particular scenario can't be met with any tool. As noted, comitted is comitted, so no rollback is available after the fact. Now, that doesn't mean you can't play fancy games with some kind of 'before image' as Ray notes, or wi...
by chulett
Fri Jan 04, 2008 4:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column to rows
Replies: 8
Views: 2811

You are trying to make 2 records out of each set of 7 records? Or do you only need to produce the 'heading' row once? :?
by chulett
Fri Jan 04, 2008 4:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column to rows
Replies: 8
Views: 2811

You would need to use stage variables to (ultimately) build a concatenated record (including field delimiters) and then only write it out when you have a 'complete record' as one long varchar. That could be when you read the "EndorsementSqn" record or after you've read 7 records, depending on if you...
by chulett
Fri Jan 04, 2008 2:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dynamically generation sequential file
Replies: 14
Views: 3992

Please verify that you will be using Server jobs for this and that you are indeed still running a 5.x version of DataStage. If that's the case, I'd think your answer will be to write out a single file with this unique value as the first field and then use some other mechanism to split it up into sep...
by chulett
Fri Jan 04, 2008 1:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine in Job Sequence takes longer
Replies: 11
Views: 3063

Cool. Like Arnd, I too ran into this problem several years ago and had a bitch of a time trying to figure out what in the heck was going on. Once you do, though, you never forget. :lol:

And as Arnd noted, it's not an issue that manifests itself using the 'test harness' code that the Manager generates.
by chulett
Fri Jan 04, 2008 12:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update Sequence number as part of the job sequence
Replies: 16
Views: 4366

Sure... but if you always want to start from 1 use the @OUTROWNUM system variable instead.
by chulett
Fri Jan 04, 2008 12:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to genarate keygenarate next value from the given format
Replies: 5
Views: 1403

Without knowing what 'KeyGenerateNextValue' is, not sure how anyone can help. And to 'convert' in Server, just move it to a numeric field. Or you can do math on it as well.
by chulett
Fri Jan 04, 2008 10:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine in Job Sequence takes longer
Replies: 11
Views: 3063

Interesting. So perhaps for these tests you can ditch the 'mod 50' and log each and every iteration (with job name) to see if there is one particular job causing the problem?
by chulett
Fri Jan 04, 2008 10:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine in Job Sequence takes longer
Replies: 11
Views: 3063

I'll bet it's because you are attaching to the current job, which can be... problematical. You want to check the jobname and not even attach to it, not simply detach when you hit it without doing any processing.
by chulett
Fri Jan 04, 2008 7:33 am
Forum: General
Topic: Regarding Array Size
Replies: 9
Views: 2584

Sheesh... that is a ridiculous value to use and falls into the 'bigger must be better' camp. Typically, you need to be aware of your network packet size and average record length then adjust your Array Size accordingly. In other words, there is no one magic value - it will vary from job to job. You'...
by chulett
Fri Jan 04, 2008 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Target based loading--As in other ETL tools
Replies: 5
Views: 1161

Well, as noted, it certainly can be done in one Server job. Rather easily. No magic required. :wink:
by chulett
Fri Jan 04, 2008 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Prcessing XML files
Replies: 11
Views: 4160

Exactly. Look for the 'XML PACK' pdf documentation in your Docs directory. Also go to Kim Duke's website and download the XML Best Practices document that is in his Tips section.

Sounds like what you are missing are the XPath Expressions that drive the XML parsing. Read the docs.
by chulett
Fri Jan 04, 2008 7:17 am
Forum: General
Topic: Regarding Array Size
Replies: 9
Views: 2584

:? Array Size is neither a project level variable nor a magic bullet for performance issues. You'll need to get more specific if you want specific help.
by chulett
Thu Jan 03, 2008 8:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: switch stage
Replies: 4
Views: 1144

Why not just substring the first character and check that?