Search found 53125 matches

by ray.wurlod
Tue Jan 18, 2011 3:36 pm
Forum: General
Topic: Job from command prompt
Replies: 12
Views: 3893

No, because you have not informed us how you are trying to pass the parameter values. I assume you mean to a sequence, rather than to a sequencer.
by ray.wurlod
Tue Jan 18, 2011 3:34 pm
Forum: General
Topic: error handling
Replies: 2
Views: 1085

Welcome aboard. Is this an interview question?
by ray.wurlod
Tue Jan 18, 2011 4:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage - Ignore Null or Blank Values
Replies: 1
Views: 1251

Sure is. Use a conditional lookup. On the same screen where you set Lookup Failed rule you can build a condition (probably using IsNotNull() function) and specify Continue or Drop as the Condition Not Met rule, as appropriate to your needs.
by ray.wurlod
Tue Jan 18, 2011 4:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Set Error
Replies: 9
Views: 3909

DataStage wrote:This input-file data set does not exist:/home/abhik/tgt/sort.ds
This message suggests that you are trying to read from a non-existent Data Set.
by ray.wurlod
Tue Jan 18, 2011 4:05 am
Forum: General
Topic: Routine for getting the count in the link
Replies: 5
Views: 1987

We don't do "urgent". We especially don't do "very urgent". DSXchange is an all-volunteer site whose members post as and when they can. If you need urgent help, sign up with your official support provider for priority service and learn just how much "urgent" costs. My ...
by ray.wurlod
Tue Jan 18, 2011 4:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: xml parsing into table
Replies: 8
Views: 3281

I can't see where you said that before.
:?
by ray.wurlod
Tue Jan 18, 2011 3:58 am
Forum: General
Topic: How to start get strings when end with a string?
Replies: 2
Views: 1229

Or, slightly more simply InLink.TheField[Index(InLink.TheField, " to ",1) + 4, 999999] This method relies on the fact that the string returned by the substring operator ends at the end of the source string no matter how many characters were actually requested in the substring operator. Not...
by ray.wurlod
Mon Jan 17, 2011 11:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Questions regarding Hash files and hash file stage
Replies: 54
Views: 42070

Yes, RESIZE can accept any of the dynamic hashed file properties on its command line. RESIZE hashedfilename * * * SPLIT.LOAD 80 MERGE.LOAD 60 Your assumption about whether things will be improved or not is predicated on intelligent choices being made regarding the new settings! However, your belief ...
by ray.wurlod
Mon Jan 17, 2011 11:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: xml parsing into table
Replies: 8
Views: 3281

So, you have no text() item?
by ray.wurlod
Mon Jan 17, 2011 7:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job warnings
Replies: 9
Views: 4608

Any suggestions . :idea: Suggestion: Learn that DSXchange is an all-volunteer site whose members post as and when they can and, if they have nothing to contribute, will typically not post anything. If you insist on demanding responses, do so of your official support provider, whom you are paying to...
by ray.wurlod
Mon Jan 17, 2011 7:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Testing for Null on a not nullable field which is Nullable
Replies: 4
Views: 1881

Generically use CAST operator. You can still use AS to create the alias.

Code: Select all

SELECT CAST(fielda AS VARCHAR(26)) AS new_fielda FROM ...
by ray.wurlod
Mon Jan 17, 2011 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Testing for Null on a not nullable field which is Nullable
Replies: 4
Views: 1881

You'd better post the exact error message because your subject ("on a not nullable field which is Nullable") is totally confusing.
by ray.wurlod
Mon Jan 17, 2011 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Enterprise -Error message
Replies: 1
Views: 1228

Verify the data type of INDV_ID in Teradata. DataStage is having a problem with that.
by ray.wurlod
Mon Jan 17, 2011 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Questions regarding improving inserts / updates
Replies: 6
Views: 2162

(1) Impossible to say - depends on many other factors, such as what indexes and constraints exist. (a) Don't know, but presumably yes. (b) Array size is the number of rows sent in a single batch - that won't change. Transaction size is how often a COMMIT is issued. See next answer. (2) Commit is not...