Search found 42189 matches

by chulett
Mon Oct 22, 2012 6:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup job fails with error "Could not alloc memory for
Replies: 21
Views: 6157

Well... allegedly it runs fine on one server and not the other. I've seen that when the 'works fine' one is 64bit and the 'not so fine' one is 32bit. Any chance of that?
by chulett
Mon Oct 22, 2012 6:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help Needed For FTP Enterprise Stage
Replies: 4
Views: 1539

Does the stage even support sftp? OK, a quick check of the docs show it does, have you enabled that option?
by chulett
Mon Oct 22, 2012 6:18 am
Forum: General
Topic: dsjob -run error
Replies: 10
Views: 3964

But using both doesn't cause an error from what I recall, just confusion. Can you post the current version of your dsjob command and the latest error you are getting?
by chulett
Mon Oct 22, 2012 6:16 am
Forum: General
Topic: Unhandled failure (255) encountered
Replies: 3
Views: 2182

You don't have a library error. All the "unhandled failure" means is your command did not return a zero and you have the "Automatically handle activities that fail" option enabled in the Sequence. You didn't specify what to do on failure so it handled it. You'll need to dig into ...
by chulett
Mon Oct 22, 2012 6:12 am
Forum: General
Topic: Unhandled failure (255) encountered
Replies: 3
Views: 2182

Re: Unhandled failure (255) encountered

SPuneet wrote:please help..how should i rectify this
Begin by starting your own post. Your issue isn't "similar" to the post you jumped on the end of, so I split you out so we could keep the two unrelated conversations... unconnected.
by chulett
Sun Oct 21, 2012 8:23 pm
Forum: General
Topic: dsjob -run error
Replies: 10
Views: 3964

[-param <name>=<value>]

Either pass a name/value pair or don't include the "-param" if you don't need to pass a parameter. Also, use either -wait or -jobstatus, not both.
by chulett
Sun Oct 21, 2012 8:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: High Availability and Fail Over in IIS 8.5
Replies: 5
Views: 2717

There's information on HA over in the IBM Information Center, for example this topic, specifically Planning Step 3 and the "High availability configurations" section.
by chulett
Sun Oct 21, 2012 8:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pin 2 not initialised error
Replies: 13
Views: 4966

With this additional information, I'm going to agree with Arnd that you need to put this in front of your official support provider.
by chulett
Sat Oct 20, 2012 7:34 am
Forum: General
Topic: How to fetch information from a Sequencer job
Replies: 9
Views: 2023

Examine the sequence job's logs, the answer should be readily apparent. :wink:
by chulett
Sat Oct 20, 2012 7:33 am
Forum: General
Topic: CDIIN4361E: Model deploy failed
Replies: 4
Views: 3242

So what was your "workaround"?
by chulett
Sat Oct 20, 2012 7:32 am
Forum: General
Topic: Error while creating a datastage project
Replies: 7
Views: 5459

Any chance you could expand on what you mean by "using bundled websphere"?
by chulett
Sat Oct 20, 2012 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server to Parallel job conversion
Replies: 6
Views: 2354

I'm just going to echo what Ray said but add that you should think of this as if you were converting from a completely different tool to another, which basically you are. Make sure you thoroughly understand what the Server job does and then build an equivalent Parallel job. Much the same as if you'd...
by chulett
Fri Oct 19, 2012 4:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pin 2 not initialised error
Replies: 13
Views: 4966

Nop instead of IDENT1 we are getting "TRANSFORMER STAGE1:Pin 2 not initialized" Which is to be expected if this didn't solve the problem as now the transformer has a name. Odd that it didn't change at all as it seems like you would need to drop and re-establish all of the links between th...
by chulett
Fri Oct 19, 2012 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter stage not removing nulls
Replies: 4
Views: 2749

times29 wrote:i did try payr_vblnr is not null or payr_vblnr <>' ' but same result
Unless that's a typo, there's a space between those two quotes in what you posted so that (a space) is what it is attempting to filter. Just use two quotes to represent the empty string.
by chulett
Fri Oct 19, 2012 1:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter stage not removing nulls
Replies: 4
Views: 2749

That would imply they're not nulls but rather empty strings. It works in Oracle because Oracle treats them as equivalent but DS does not. Try filtering for empty strings ('') or both and see if that works.