Search found 42189 matches

by chulett
Tue Oct 26, 2010 6:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What does "Validate input XML" in XML Input stage
Replies: 1
Views: 904

Pretty much exactly what it sounds like it would do - validate the XML against the xsd and can raise errors in the job if any of the checks fail.
by chulett
Mon Oct 25, 2010 9:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to export/import XSD
Replies: 3
Views: 1966

Do you mean the xslt? Or the XPath Expressions generated from the xsd? :?
by chulett
Mon Oct 25, 2010 5:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need logic to filter
Replies: 6
Views: 1850

Unless the substring operators work differently in PX from Server, using input[1] would take the last character, not the first. You'd have to specify input[1,1] to get the first.
by chulett
Mon Oct 25, 2010 3:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need logic to filter
Replies: 6
Views: 1850

One way - get the decimal value of the upper-cased first character and ensure it falls between either 48-57 or 65-90.
by chulett
Mon Oct 25, 2010 11:31 am
Forum: General
Topic: how to stop job after unix script returns value 1
Replies: 7
Views: 2449

So, it worked more better when you used the actual syntax I posted I see. :wink: It's been explained here quite a number of times already. Best thing I can tell you to do is search for the error message that usually starts this conversation and you'll find plenty of examples. Do an exact search for ...
by chulett
Mon Oct 25, 2010 10:20 am
Forum: General
Topic: How to remove the temporary schema generation
Replies: 3
Views: 1527

I only say that because the people that know that product only seem to hang out there, so you need to post it there if you want them to see it.
by chulett
Mon Oct 25, 2010 10:18 am
Forum: General
Topic: how to stop job after unix script returns value 1
Replies: 7
Views: 2449

You need to remove the Field Mark(s) that they return with:

Convert(@FM,"",custom EX_SH_test.$CommandOutput) <> 1
by chulett
Mon Oct 25, 2010 8:39 am
Forum: General
Topic: How to remove the temporary schema generation
Replies: 3
Views: 1527

If your job type is indeed a "TX" job then you should be posting your question in the TX specific forum.
by chulett
Mon Oct 25, 2010 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String function using transformer - to break long name
Replies: 3
Views: 1517

Index() and Field() would be the two primary weapons of choice.
by chulett
Mon Oct 25, 2010 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Config file warning...
Replies: 10
Views: 5440

You need to check on the physical disk space for scratch on that node, not anything with ulimit at this point.
by chulett
Mon Oct 25, 2010 7:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Error generated while viewing the log
Replies: 2
Views: 2591

Your log is corrupted due to too many messages being logged and the size exceeding 2GB. An exact search for "Computed blink of" should turn up many conversations on the topic as well as your options.
by chulett
Mon Oct 25, 2010 7:05 am
Forum: General
Topic: Passing data as parameter values
Replies: 8
Views: 5235

Field function. The last three bits should be ",",1,1 for the first field, ",",2,1 for the second field, etc. In other words: comma separated, field #, # of contiguous fields to extract.
by chulett
Sun Oct 24, 2010 8:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Compilation Error: Cannot open include file
Replies: 9
Views: 4197

Yes, sometimes Microsoft does give stuff away for free. :wink:

What versions does your documentation say are supported in that release?
by chulett
Sun Oct 24, 2010 8:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Alternate option to DSGetLinkInfo
Replies: 5
Views: 2476

The last value will be the max value... so, an Aggregator set to Last or Max would be one solution.
by chulett
Sun Oct 24, 2010 5:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Appending Data to Oracle Table using Enterprise Stage
Replies: 5
Views: 2504

Then you need to not send them to the target, and that would typically mean a lookup against the target and only pass the records that 'fail'. Assuming your duplicates are not in your load data, that is.