Search found 42189 matches

by chulett
Tue Mar 13, 2007 9:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Plug-n stage does not have required stream inputs
Replies: 3
Views: 1316

If you want 'step by step' be sure to read the XMLPACK_20_Designer.pdf manual in your Docs directory. It's all there.
by chulett
Tue Mar 13, 2007 9:24 am
Forum: Enhancement Wish List
Topic: Open Designer job that is locked - do not go to Open Job win
Replies: 3
Views: 2501

Agreed, this annoys me as well. :wink:

From what I understand, it all changes under 8.0 - can someone verify?
by chulett
Tue Mar 13, 2007 8:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Application Error Designer closes
Replies: 22
Views: 5364

There yah go. :wink:

:!: On the patch issue, here is a post where both are mentioned. The 'crash patch' is not available on the Portal, you'll need to contact Support and arrange for them to make it available for you.
by chulett
Tue Mar 13, 2007 8:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Plug-n stage does not have required stream inputs
Replies: 3
Views: 1316

You need something to read the XML file - for Server a Folder stage is preferred.
by chulett
Tue Mar 13, 2007 8:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Application Error Designer closes
Replies: 22
Views: 5364

Like that's going to help. Now they'll think you are Brian *and* the Father of Awk. Add a disclaimer that it's not your name.
by chulett
Tue Mar 13, 2007 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use Stage Variables when datasource is empty
Replies: 6
Views: 1901

kumar_s wrote:Yes, this routine wont be executed at all.

:? It will if also called in the Initial Value area, as I noted.
by chulett
Tue Mar 13, 2007 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Application Error Designer closes
Replies: 22
Views: 5364

This is a known issue - Designer crashing working Sequence jobs - unrelated to SP2 and there is a separate patch for it. Search the forum, the specific patch is probably listed here somewhere.

Basically, you'll need to log on to the IIS Portal / eService website and download it.
by chulett
Tue Mar 13, 2007 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating Surrogate Keys via hash functions
Replies: 20
Views: 6994

I know no-one has asked for it, but thought I would throw in my two cents. I've said this before and I'll say it again. I would not consider any kind of 'hashing' algorithm suitable for surrogate keys. Period. If forced to choose between your two choices, I'd go MD5 over CRC32 or would push for one ...
by chulett
Mon Mar 12, 2007 2:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Staging Data In Sequential File
Replies: 11
Views: 2586

Too slow. :wink:
by chulett
Mon Mar 12, 2007 2:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Staging Data In Sequential File
Replies: 11
Views: 2586

Yes.
by chulett
Mon Mar 12, 2007 10:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute Command - Shell script execution error
Replies: 12
Views: 14819

(1) Problem 1: I am still get the warning like this Seq_Test1..JobControl (@Execute_Command_46): Command /inbound/scripts/abc.sh did not finish OK, reply = '127' You will because your script sent a return code that is non-zero. All you did was turn off the fact that the job should automatically abo...
by chulett
Mon Mar 12, 2007 10:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute Command - Shell script execution error
Replies: 12
Views: 14819

You have 'Automatically handle activities that fail' turned on and your command did not return a zero result - so it was considered to have failed.

Either turn off that option or read in the Help how to use two triggers to convince the Sequence job that you are handling the 'failure'.
by chulett
Mon Mar 12, 2007 9:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use Stage Variables when datasource is empty
Replies: 6
Views: 1901

I would suggest that you use your routine in the Initial Value column where the stage variable is defined to explicitly set the value to 'OK' when the job starts. Leave your other mechanism in place so that it is still used when rows actually do flow through the job.
by chulett
Mon Mar 12, 2007 7:10 am
Forum: General
Topic: Calculating top vaues
Replies: 33
Views: 8467

In Server get the record count and Sort the data descending on the value in question. Constrain your output to the 'top 10%' of the records. ... I am facing problems in record count also as DSLINKINFo always returns 0 . How can we restrict the data to top 10 % . Get the record count before the job ...