Search found 53125 matches

by ray.wurlod
Thu Oct 26, 2006 8:58 am
Forum: General
Topic: How to use Tab Delimiter in New Job
Replies: 7
Views: 5854

If you had specified tab when importing the table definition for the text file, all you need to do is click Load... on the Format tab in your Sequential File stage. The metadata are then loaded from the Repository. Tab will appear as a little black rectangle, but will work.
by ray.wurlod
Wed Oct 25, 2006 6:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Upgrade to 8.0 for Server-only sites
Replies: 5
Views: 1114

I'm sure I answered that a while back. Was it here?
by ray.wurlod
Wed Oct 25, 2006 6:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SH UniVerse Command on Windows
Replies: 3
Views: 1296

DOS, funnily enough.

The switch for immediate return after completing the command is /C
Example:

Code: Select all

DOS /C "dir *config"


SH works if you are on version 7.5x2 with parallel jobs licensed. This takes you to a "UNIX" shell - actually MKS Toolkit.
by ray.wurlod
Wed Oct 25, 2006 6:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "Not Equal" Lookup
Replies: 13
Views: 3219

DataStage really only performs equi-join. Do the lookup based on FIELD1 and FIELD2 and make sure FIELD3 is returned. Perform the comparison A.FIELD3 > B.FIELD3 in a constraint expression.
by ray.wurlod
Wed Oct 25, 2006 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: orcherstate manual guide
Replies: 3
Views: 1277

Your support provider can supply these, and should do so at no charge.

They are also handed out (on CD) when you attend an IBM training class in DataStage Enterprise Edition.
by ray.wurlod
Wed Oct 25, 2006 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: advanced parallel job developers guide
Replies: 2
Views: 2004

It's in the Docs folder with all your other manuals.
C:\Program Files\Ascential\DataStage*\Docs
It's actually called Parallel Job Advanced Developer's Guide but it should be first in a name-ordered list as advpx.pdf is its file name.
by ray.wurlod
Wed Oct 25, 2006 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01438: value larger than specified precision allowed for
Replies: 7
Views: 5302

Oops! :oops:

My answer was for parallel Transformer stage. In server jobs the correct answer is to use the Fix() function.
by ray.wurlod
Wed Oct 25, 2006 2:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01438: value larger than specified precision allowed for
Replies: 7
Views: 5302

In a Transformer stage you can use the DecimalToDecimal() function. See Appendix B in Parallel Job Developer's Guide for full information. In a Modify stage you can use the decimal_from_decimal() function. If that's all you have to do, prefer the Modify stage, as it's much more efficient than the Tr...
by ray.wurlod
Wed Oct 25, 2006 2:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01438: value larger than specified precision allowed for
Replies: 7
Views: 5302

Re: ORA-01438: value larger than specified precision allowed

Abdulwahabza wrote: I have a column in table whose data type is number 9(2) and for this field i am getting value from source as 12345.7626

Seems to me that your problem is right there! How can you get this value if the metadata specifies two decimal places? Perchance you have a metadata mismatch?
by ray.wurlod
Wed Oct 25, 2006 2:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row Count in Aggregator
Replies: 6
Views: 3141

Yes it is. You need an additional output column for the count, set it up with Non Missing Values Count (or Missing Values Count) as its calculation function. If you need both, derive both and sum them in a following Transformer stage.
by ray.wurlod
Wed Oct 25, 2006 1:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: testing a null value in a routine
Replies: 11
Views: 3264

Right at the bottom of your code add the following lines.

Code: Select all

$IFDEF TESTING
If IsNull(Ans) Then Ans = "NULL"
$ENDIF
by ray.wurlod
Wed Oct 25, 2006 1:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Phantom error
Replies: 5
Views: 1622

"Phantom error" means nothing more than that the error/warning was generated by a phantom (= background) process. You need to reset your job to see whether any additional diagnostic information is logged.
by ray.wurlod
Wed Oct 25, 2006 1:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wait-for-file should run continuously
Replies: 19
Views: 6809

Congratulations! It is often worth challenging from a position of relevant knowledge.
by ray.wurlod
Wed Oct 25, 2006 1:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "Not Equal" Lookup
Replies: 13
Views: 3219

A "not equal" lookup would return most, if not all, of those three million rows for each key processed. Is that really what you want?
by ray.wurlod
Wed Oct 25, 2006 1:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do I count the total number of Jobs is a project?
Replies: 17
Views: 5945

... but the count will be given in the status bar. 8)