Search found 42189 matches
- Sun Aug 12, 2007 9:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Is anyone using Server 7.5.2 on HP-UX without issue?
- Replies: 6
- Views: 1348
Forgot to come back and close this out. Pretty sure I posted this in a related thread, but the root of the problem was the version of the Oracle client the DBAs had installed. Reimaging the server didn't help as the Oracle client version hadn't changed. Finding they had installed a version known to ...
- Sun Aug 12, 2007 9:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal Termination Of IPC Stage
- Replies: 7
- Views: 2334
- Sun Aug 12, 2007 8:58 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage Routine question
- Replies: 18
- Views: 8218
- Sun Aug 12, 2007 7:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple Instance
- Replies: 8
- Views: 1504
That will work. I just modified one of my test sequence jobs to do this, no concatenation operator or quotes around the number and it worked just fine:
etc.
Code: Select all
#P_PARAM_NAME#1
#P_PARAM_NAME#2etc.
- Sat Aug 11, 2007 6:01 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage Routine question
- Replies: 18
- Views: 8218
- Sat Aug 11, 2007 5:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage Routine question
- Replies: 18
- Views: 8218
How would you specifically code for error in the routine? You'd need to handle that on a case-by-case basis. What I meant was check statuses or trap errors so you can control what gets passed back. For DSExecute() a non-zero value in the variable you've named rtncd would indicate a problem with the...
- Sat Aug 11, 2007 1:53 pm
- Forum: General
- Topic: Use of cmd line import utility "dscmdimport" in Da
- Replies: 6
- Views: 5834
- Sat Aug 11, 2007 6:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: multiple standalone jobs in one job - any performance gain?
- Replies: 4
- Views: 1296
Re: multiple standalone jobs in one job - any performance ga
Welcome! :D Does creating 1 job for all the four mappings give me any performance benifit? No. In my opinion, there are no 'pros' and all 'cons' to this approach. If there are any dependancies on any of these jobs, you now need to wait for all jobs to complete. The bigger issue to me is restartabili...
- Sat Aug 11, 2007 6:41 am
- Forum: General
- Topic: Use of cmd line import utility "dscmdimport" in Da
- Replies: 6
- Views: 5834
- Sat Aug 11, 2007 6:33 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Performance of Aggregator Stage
- Replies: 4
- Views: 1180
- Sat Aug 11, 2007 12:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple Instance
- Replies: 8
- Views: 1504
What exactly is PARM1 and PARM2? I'm having a hard time following your question, it almost looks like you want to create an Invocation Id with a dot in it - "PARM1.1" - when that is not allowed. Or is PARM1 the name of your Sequence (note - not 'Sequencer') job and the '1' is the desired Invocation ...
- Sat Aug 11, 2007 12:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage Routine question
- Replies: 18
- Views: 8218
What I've done in those cases where I need to check three flavors of return values from a routine is use three triggers. I have something similar where I pull Link Row Counts from a job and then: $ReturnValue=0 Link to 'no rows' processing $ReturnValue>0 Link to 'have rows' processing $ReturnValue<0...
- Fri Aug 10, 2007 11:23 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage Routine question
- Replies: 18
- Views: 8218
Controller problem: Unhandled failure (5) encountered calling routine DSU.FoundFileCount This comes from having the 'Automatically handle activities that fail' option enabled in your Sequence job. As noted, your Routine returned a value of five (shown in parens) and a routine that does not return a...
- Fri Aug 10, 2007 5:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: error calling DSsetparm
- Replies: 3
- Views: 1141
[sigh] Rather than awaiting my reply you should be searching the forums and helping yourself. Your answer *is* out there if you search for "ParamValue/Limitvalue is not appropriate". Did you even try?
One example. There are others.
One example. There are others.
- Fri Aug 10, 2007 5:16 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage Routine question
- Replies: 18
- Views: 8218
Re: Datastage Routine question
This is what I have in Triggers tab of the RoutineActivity stage: RoutineActivity.$ReturnValue<0>=1 That's your problem. You've already done the <> thing so there's no reason to do it again in your trigger code, never mind the fact that you chose to use the 'zero element'. Try this: RoutineActivity...