Search found 42189 matches

by chulett
Thu Jan 20, 2005 7:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running Multiple jobs simutaneously in a sequencer
Replies: 5
Views: 1435

Why use a Routine Activity stage to do that when there is a specific Job Activity stage available? If you lay it out like T42 showed, running the three links into a Sequencer set to 'All' with your other jobs downstream from there, the three jobs will run simultaneously and will only move onto the f...
by chulett
Thu Jan 20, 2005 12:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in Aggregator Stage
Replies: 4
Views: 1531

It generally means you are processing more rows than the stage can handle. It would help if you can presort your data on the grouped fields and then assert that in the stage by marking those columns as sorted.

Is that a possibility?
by chulett
Thu Jan 20, 2005 10:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Corrupt Indexes
Replies: 10
Views: 5124

You might want to post the actual 'unlock' process you were given... what 'Universe commands' you are executing.
by chulett
Thu Jan 20, 2005 10:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error within a Server Routine
Replies: 7
Views: 1778

Post the entire text of your routine, please. Use the 'code' tags to wrap it so that it is readable... you can verify that by using the 'Preview'. Without those tags it left justifies everything and is hard as heck to read.
by chulett
Thu Jan 20, 2005 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Limiting Job Parallelism
Replies: 16
Views: 5173

I wonder if there is really no possibility for that kind of controll in DataStage. What about an external scheduler? e.g. Tivoli Has someone a hint? Sure, and it's been mentioned. Hand code. The ones that I know of - Peter has written one, Kenneth has, even I have on a smaller scale. I suppose you ...
by chulett
Thu Jan 20, 2005 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UPDATE row using OpenClient plug-in or ODBC
Replies: 4
Views: 1405

Oh, duh. Sybase IQ - sorry I didn't notice that bit.
by chulett
Thu Jan 20, 2005 7:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-26028: index initially in unusable state
Replies: 15
Views: 11438

we generated a million rows of data and tried to load on a small AIX server in our office here. Same result, 1,400 rows per second even when loaded directly via oracle loader.... When you say 'loaded directly via Oracle loader', you mean sqlldr and not the Ora Bulk stage in automatic mode, yes? And...
by chulett
Thu Jan 20, 2005 7:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UPDATE row using OpenClient plug-in or ODBC
Replies: 4
Views: 1405

Not *quite* sure what the issue is here... By 'parameter' do you mean bind variable? And I'm pretty sure that an expression where you compare something (like a parameter) to something in quotes forces a string comparision and an implicit cast. I haven't had issues like this using the Sybase OC that ...
by chulett
Thu Jan 20, 2005 7:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Limiting Job Parallelism
Replies: 16
Views: 5173

Oh... gotcha! :oops: I didn't quite follow what you meant by 'ten parallel streams' for some reason. Cool. 8)
by chulett
Wed Jan 19, 2005 6:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Contents of Hash File
Replies: 1
Views: 579

You could always write a server job to do it... source from the hash and write out to a sequential file stage.
by chulett
Wed Jan 19, 2005 6:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: append column
Replies: 5
Views: 1765

True. Shouldn't be any problem loading the entire hash file into memory. :wink:
by chulett
Wed Jan 19, 2005 4:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Limiting Job Parallelism
Replies: 16
Views: 5173

Hmmm... pretty sure that's what I said. :wink:
by chulett
Wed Jan 19, 2005 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: append column
Replies: 5
Views: 1765

Put the first file's single record into a hash file with a hard-coded key value - like a '1'. Then stream in your second file, do the lookup and add the column to the output.

Easy Peasy. :wink:
by chulett
Wed Jan 19, 2005 2:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception Handler Email Notification - Job Status
Replies: 6
Views: 1793

paule wrote:It would seem that the job status would show the final status of the job after the second job failed.

Sure sounds like it should work that way. Perhaps you could open a support case with Ascential and see if there is a fix available. :?
by chulett
Wed Jan 19, 2005 2:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception Handler Email Notification - Job Status
Replies: 6
Views: 1793

The 'old fashioned' way to do it is to run an Otherwise trigger from each job to a single Sequencer stage set to 'Any'. From there you can link to a Notification Activity stage and it will include the status information from all jobs that have run up to that point, including the failed job.