Search found 42189 matches
- Fri Dec 15, 2006 3:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: &.5.1 - Printer Segment
- Replies: 13
- Views: 5570
Just to take it out of the equation... and to remove the possibility that they are being created by people logging into the server with an 'old' client and possibly causing the issue. Are people connecting to the Production project from their clients using something other than the 'single id' that i...
- Fri Dec 15, 2006 2:00 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Bypassing notification activity in a sequencer
- Replies: 35
- Views: 9528
Oh, it's working - just not like you want it to. Ok, that was silly of me to fixate on your syntax instead of what I know works. And it wasn't until I built a teeny little test job that it dawned on me... $ReturnValue is always zero because the command runs without error. What your trigger needs to ...
- Fri Dec 15, 2006 1:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: regarding peculiar problem when using DRS STAGE
- Replies: 7
- Views: 1414
Re: regarding peculiar problem when using DRS STAGE
vijaykumar wrote:i want to know what does 0 ROWS/SEC INDICATES.
It means they were all loaded in less than a second... or you loaded nothing.
- Fri Dec 15, 2006 1:27 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Bypassing notification activity in a sequencer
- Replies: 35
- Views: 9528
Ok, have you looked at the output from your command when there are no zip files in that directory? I just built a small test and I get a number if files exist but if they don't I get two rows of output: $ ls *.zip |wc -l *.zip not found 0 You need to redirect stderr out to nowheres-ville so it doesn...
- Fri Dec 15, 2006 12:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Bypassing notification activity in a sequencer
- Replies: 35
- Views: 9528
- Fri Dec 15, 2006 12:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Bypassing notification activity in a sequencer
- Replies: 35
- Views: 9528
Also, my sequencer has just 2 stages. First, an ExecuteCommand stage and then a Notification Activity stage. For a certain value, I want the flow to go to the Notification stage otherwise I just want the sequencer stage to end there. Do I have to have another stage for different values? No, just do...
- Fri Dec 15, 2006 12:45 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Bypassing notification activity in a sequencer
- Replies: 35
- Views: 9528
Screen output from commands are returned in a dynamic array, so you'll get more than just the count returned. There just was a nice thread on all this, I'll have to see if I can dig it up. You need to check the first element of the returned value for zero, either that or filter out the @FM character...
- Fri Dec 15, 2006 12:36 pm
- Forum: General
- Topic: How to use Stage XML
- Replies: 11
- Views: 5044
- Fri Dec 15, 2006 12:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: &.5.1 - Printer Segment
- Replies: 13
- Views: 5570
- Fri Dec 15, 2006 12:27 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Bypassing notification activity in a sequencer
- Replies: 35
- Views: 9528
- Fri Dec 15, 2006 9:07 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Schedule DataStage job using command line
- Replies: 1
- Views: 1308
Please don't post the same question in multiple forums. I've already responded to this in your General Forum post.
- Fri Dec 15, 2006 9:06 am
- Forum: General
- Topic: Schedule datastage job using command line
- Replies: 5
- Views: 8718
There really isn't a commond line option for scheduling a DataStage job. However, there *is* a command line option for running a DataStage job which can be be leveraged by your scheduler. What is your scheduler of choice, by the way? That option is dsjob and it is fully documented in the Command Lin...
- Fri Dec 15, 2006 9:01 am
- Forum: General
- Topic: How to use Stage XML
- Replies: 11
- Views: 5044
Your XPath expressions don't match up to what it found in the file. Not sure how much plainer to say it. Don't forget that namespace plays a role here as well, but problems there would typically (but not always) generate errors during the run. You haven't given us any information that we can use to...
- Fri Dec 15, 2006 8:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Save doublon
- Replies: 22
- Views: 5972
You don't want to catch every error, you want to avoid generating any errors. There's no reason on the planet for a Server job to ever generate any warnings. You should be checking for uniqueness before sending anything to your database and either turning that operation into an update or logically d...
- Fri Dec 15, 2006 8:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Active stage custom exp job staus (0,1,2,3) refer to?
- Replies: 5
- Views: 1531
And rather than checking the status for its numeric value, you are better off using the equated value. For example, instead of: JobActivity.$JobStatus = 1 Use: JobActivity.$JobStatus = DSJS.RUNOK Not only is it more 'future proof' but it also uses the meaning of the number (which is what you really ...