Search found 42189 matches

by chulett
Fri Mar 16, 2012 9:14 am
Forum: General
Topic: Generate unique ID in sequence for each run of a job
Replies: 5
Views: 1342

Then you can't use a file because of concurrency issues. If you can't use a DB sequence, then look into the Server SDK KeyMgnt routines to generate a Surrogate Key, in particular the 'concurrent' version.
by chulett
Fri Mar 16, 2012 7:29 am
Forum: General
Topic: Generate unique ID in sequence for each run of a job
Replies: 5
Views: 1342

Does each job need to maintain a unique sequence for itself, or do you need one sequence that is used across all jobs?
by chulett
Fri Mar 16, 2012 6:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: conductor -uname
Replies: 5
Views: 2327

Well... technically it is a command. See man uname for the particulars.
by chulett
Fri Mar 16, 2012 6:51 am
Forum: IBM QualityStage
Topic: Migration from 7.5 to 8.5
Replies: 4
Views: 2610

Since this is basically a QualityStage question, moved it here.
by chulett
Fri Mar 16, 2012 6:47 am
Forum: General
Topic: Generate unique ID in sequence for each run of a job
Replies: 5
Views: 1342

No really. It must be stored somewhere, incremented and then passed to (or fetched by) any job that needs it. Not sure that the nuances of each step really change that basic fact.
by chulett
Fri Mar 16, 2012 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to separate charcters and integers?
Replies: 17
Views: 8172

qt_ky wrote:How about in a Parallel job using an inverse pair of Convert() functions--one for each output column?
Sure seems like that would work! :wink:
by chulett
Fri Mar 16, 2012 6:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to separate charcters and integers?
Replies: 17
Views: 8172

I doubt that they always occur in the same spot each time, hence the question on how to detect them.
by chulett
Fri Mar 16, 2012 6:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multi-Instance Overhead
Replies: 7
Views: 2475

Exactly... you'll also have to ensure that they are multi-instance capable, meaning designed to be able to run in that fashion. As noted, that means more than just checking a check-box, although for simple designs that can be all it takes. It's all about shared resources, targets, lookups (etc) you ...
by chulett
Thu Mar 15, 2012 5:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multi-Instance Overhead
Replies: 7
Views: 2475

jonesv wrote:we may have stress testing going on concurrently with function testing.
At first blush that doesn't make much sense to me... 'stress' testing at the same time that other tests are underway?
by chulett
Thu Mar 15, 2012 5:33 pm
Forum: General
Topic: Row Counts from All the tables in a Schema
Replies: 4
Views: 1466

Off we go to General / Sequence job land...
by chulett
Thu Mar 15, 2012 11:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reading thro seq file stage
Replies: 7
Views: 1828

Then it's up to you if you want to go to all the trouble of reading them all as one long string and then parsing each one "in job" once you determine what structure it is.
by chulett
Thu Mar 15, 2012 11:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reading thro seq file stage
Replies: 7
Views: 1828

Not what I said... do they all share the same structure? Same format for headers, detail, etc with the only difference being the name of the file?
by chulett
Thu Mar 15, 2012 10:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Replace . from integer
Replies: 4
Views: 1432

Output where? To what datatype? You'll need to format it as a string to remove the natural decimal attributes you are showing now.
by chulett
Thu Mar 15, 2012 10:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reading thro seq file stage
Replies: 7
Views: 1828

As long as they share the same structure / metadata, use the File Pattern option.