Search found 42189 matches

by chulett
Tue May 27, 2014 5:48 pm
Forum: General
Topic: Semaphore Process Server/Parallel
Replies: 6
Views: 2434

Ray, aren't there like five (numbered 0 through 4) or some such semaphores available to the job control code? The only thing I ever recall using them was Ken Bland's "Job Control Utility" code where he'd pass stuff via them but it wasn't anything I ever ended up using on my own in all of t...
by chulett
Tue May 27, 2014 1:23 pm
Forum: General
Topic: Sequence Job with Loop iterations in background.
Replies: 16
Views: 5605

What delimiter did you specify in the Start Loop stage? A pipe? Sorry, not sure what else to say other than the only time it goes back around again is when it hits a delimiter. :(
by chulett
Tue May 27, 2014 1:07 pm
Forum: General
Topic: Sequence Job with Loop iterations in background.
Replies: 16
Views: 5605

Then it goes back to your "list of things" to iterate through - you have an extra delimiter at the end that you need to trim. That causes it to loop one last time with no valid values to parse.
by chulett
Tue May 27, 2014 9:13 am
Forum: General
Topic: Sequence Job with Loop iterations in background.
Replies: 16
Views: 5605

Not a syntax error, that "bad state" error means it is not runnable - could mean not compiled but more than likely it is already running. You said earlier that it was a multi-instance job but I don't see any evidence of that in the command string, if it was you would need to pass the Invoc...
by chulett
Tue May 27, 2014 7:48 am
Forum: General
Topic: Sequence Job with Loop iterations in background.
Replies: 16
Views: 5605

You need to build them into the command line. Off the top of my head the syntax is -param parm=value for each name / value pair you need to pass in. So you would need three of them on the command line along with everything else. If that is what you tried and is not working for you, show us the exact...
by chulett
Tue May 27, 2014 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Parallel over a new schema Oracle
Replies: 3
Views: 1234

Okay... can you detail for us how this "first stage" is retrieving the field called "ROW_ID"? It sounds like it simply doesn't exist in the table in this new schema you created, have you verified that it does? Did you not get any kind of ORA error as well? I thought at first you ...
by chulett
Tue May 27, 2014 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convertion of 60 digit Alpha Numeric to 40 digit?
Replies: 9
Views: 1931

Re: Convertion of 60 digit Alpha Numeric to 40 digit?

So, which one of these two contrary statements in your original post is correct? How to convert 60 digit Alpha Numeric value to 40 digit? How to convert 60 to 40 digit Alpha numeric value?? For the first one, I'm not aware of any way to somehow "convert" a sixty character string into a for...
by chulett
Tue May 27, 2014 12:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with XML input stage
Replies: 7
Views: 3269

That doesn't make it Massively Parallel... how about answering my first question? The second was somewhat rhetorical. However, on the chance that your topology is an issue please clarify for us what you mean by "two box machine".
by chulett
Mon May 26, 2014 7:59 pm
Forum: General
Topic: Sequence Job with Loop iterations in background.
Replies: 16
Views: 5605

What he said. :wink:
by chulett
Mon May 26, 2014 5:19 pm
Forum: General
Topic: Sequence Job with Loop iterations in background.
Replies: 16
Views: 5605

To run a job in the loop without waiting, you can't use a Job Activity stage to run them as they have the wait built in. You'll need to use dsjob from the command line without either of the wait options to accomplish that.
by chulett
Mon May 26, 2014 7:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with XML input stage
Replies: 7
Views: 3269

All your error is saying at the moment is that your XML file cannot be found. Is that path correct and does the user your job runs under have the proper permissions required to read it?
by chulett
Fri May 23, 2014 9:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: National characters converted data from Baltic/ Poland
Replies: 15
Views: 6390

It's been three months now... have you not engaged your official support provider to help with this?
by chulett
Fri May 23, 2014 9:14 am
Forum: General
Topic: Warning when using ODBC in a custom routine
Replies: 3
Views: 1322

Any routine that does not return a zero is assumed to have failed when you have that "Automatically handle" option enabled. You have to explicitly handle the "failure" so it (the sequence job) doesn't think it needs to handle it for you. The help text for that option explains the...