Search found 42189 matches

by chulett
Tue Jun 17, 2014 11:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQHRF2 header write using mq connector
Replies: 5
Views: 2117

Help us help you - what is "not proper" about it?
by chulett
Tue Jun 17, 2014 11:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Huge amount of processes generated
Replies: 6
Views: 2589

OK, just to keep picking at this... that's almost a month. Was he saying that over that course of time your jobs generated 1000 processes or you've had 1000 processes all 'running' since that time?

Also, you didn't answer the aborted question.
by chulett
Tue Jun 17, 2014 9:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Huge amount of processes generated
Replies: 6
Views: 2589

I was told it happens often to beginners. Have whomever told you that explains what it means. :? When these jobs "finished running" did they run OK or did they in fact crash / die / abort? The latter can leave orphaned processes running, which may be what your comment maker meant. Oh and ...
by chulett
Tue Jun 17, 2014 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Huge amount of processes generated
Replies: 6
Views: 2589

You are probably correct but first I would suggest confirming that belief. Can you confirm what kind of processes they were? Post some examples?
by chulett
Tue Jun 17, 2014 6:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: GET N rows in output based on counts
Replies: 11
Views: 3541

For that suggestion, only the first column should be the 'key' in the Sort change in order to generate a proper Key Change column.
by chulett
Mon Jun 16, 2014 6:00 pm
Forum: General
Topic: ps -ef command error
Replies: 5
Views: 2075

You could also look into what I seem to recall a Sequence job will do in a similar situation - use DSWaitForJob() but pass it a list of job handles to wait for. And it does. However, not aware of an equivalent from the command line, you'd need to make use of a routine and DSRunJob() to initiate them...
by chulett
Mon Jun 16, 2014 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: GET N rows in output based on counts
Replies: 11
Views: 3541

Then I would wager the suggestions were not properly implemented but there's no way to know that without including details of what you actually attempted. Let's stick with "Suggestion 1" for the moment, can you show us the stage variables, their derivations and the constraint you used? You...
by chulett
Mon Jun 16, 2014 2:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: GET N rows in output based on counts
Replies: 11
Views: 3541

You've gotten specific suggestions right here in this thread. Please be more specific with regards to what "did not work" about them. As Arnd noted, this seems pretty straight-forward to me so I'd be curious what issues you had with his approach in particular. And ps - none of the suggesti...
by chulett
Mon Jun 16, 2014 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC - Transaction Handling
Replies: 4
Views: 1828

Not going to work that way, the deletes will be committed and then your inserts will start. They both need to be 'inside' the stage to be in the same transaction and that requires two links. The delete link needs to be ordered to run first and only needs to send 1 row to trigger the deletes. Which O...
by chulett
Mon Jun 16, 2014 12:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL error "-246" in DB2 Insert
Replies: 3
Views: 1869

Have you asked your DBA about this message?
by chulett
Mon Jun 16, 2014 12:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC - Transaction Handling
Replies: 4
Views: 1828

What stage are you using? Typically you would get everything in a 'transaction' simply by using a single target stage with multiple input links.
by chulett
Mon Jun 16, 2014 11:21 am
Forum: General
Topic: Shell script to start a job using dsjob
Replies: 13
Views: 37036

You would need to have access to his 'KBA Job Control Utility' code for those to make any sense. I would imagine they could be... ignored.
by chulett
Mon Jun 16, 2014 9:03 am
Forum: General
Topic: command line trigger for job
Replies: 11
Views: 4186

That seems... fine... if all it is doing is make sure things are ready to go as you have no actual RUN mechanism in there. Have you tested it with a non-existent job? Asking because I looked for 'ERROR' in the jobinfo output rather than any kind of status value. And just a side note if this ends up ...
by chulett
Mon Jun 16, 2014 8:49 am
Forum: General
Topic: Change a default value by script
Replies: 11
Views: 2658

You can edit / change a job export through whatever mechanism you have skills in and are comfortable with. As to the compile question - yes but only on the client side.
by chulett
Mon Jun 16, 2014 6:52 am
Forum: General
Topic: Change a default value by script
Replies: 11
Views: 2658

Better answer would be to not be reliant on default values, sounds like a switch to leveraging parameter value files may be in order. There's nothing inherently different about editing a dsx vs. an isx, both are doable and carry the same level of risk. You keep saying 'routine' which has a very spec...