Search found 53125 matches

by ray.wurlod
Fri Sep 15, 2006 5:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding the Job ID
Replies: 4
Views: 1108

The pre-defined SDK Key Management functions can do this for you. These emulate a sequence in a database. Use a Routine activity to invoke.
by ray.wurlod
Fri Sep 15, 2006 5:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to avoid warnings when truncating field widths
Replies: 4
Views: 1253

Insert a Modify stage upstream to convert the string[8] to string[max=10]
by ray.wurlod
Fri Sep 15, 2006 2:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what's the difference between SQL type and Data Element
Replies: 4
Views: 921

I am going to presume you are happy with what SQL data types are. Data Elements are internal to DataStage. I like to think of them as "luggage tags" for data. For example, the SQL data type might be Char(10). What is it? A telephone number? A tax file number? A product code? Data Elements allow you ...
by ray.wurlod
Fri Sep 15, 2006 2:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can't import metadata with DB2 plug-in
Replies: 3
Views: 752

I think you're barking up the wrong tree. And, even if you do re-install, how do you know you don't have a defective component?
by ray.wurlod
Fri Sep 15, 2006 2:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compare columns
Replies: 3
Views: 917

From where and how do expect to derive the maximum value if you don't want to use a lookup? A job parameter perhaps? As some point you are doing to need to query the target table to determine that maximum value, whether you call it a lookup or not.
by ray.wurlod
Fri Sep 15, 2006 2:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: support site for ascential
Replies: 1
Views: 964

Your support provider should be able to provide you with the URL that they would prefer you to use. Or you can search IBM's website if there's something in particular that you seek.
by ray.wurlod
Fri Sep 15, 2006 2:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Viewing filesets
Replies: 2
Views: 1247

Viewing data in a File Set can be done with a job that uses a File Set stage with the correct control file name and record schema for that File Set; you can use View Data within the job design. Alternately, first cat the File Set's control file (the file with a ".fs" suffix) to learn where the data ...
by ray.wurlod
Fri Sep 15, 2006 12:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: lookup condition
Replies: 5
Views: 1309

What is the point of the Sequential File stage in your job design? It blocks all rows until they are all selected from Oracle. But the clock keeps running so your elapsed time is longer than it needs to be. The hashed file lookup is the most efficient possible; that is not where your problem lies.
by ray.wurlod
Fri Sep 15, 2006 12:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: profiles passing
Replies: 7
Views: 1524

:idea: Environment variables.
by ray.wurlod
Fri Sep 15, 2006 12:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Folder Stage, Ereplace and Field Marks (@FM)
Replies: 5
Views: 5313

Use the five-argument variant of Ereplace() in which you can specify the starting occurrence and number of occurrences. But I still think Cats() or Splice() is a neater solution.
by ray.wurlod
Fri Sep 15, 2006 12:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding the IN and NOTIN operators
Replies: 2
Views: 873

The reason they don't appear on the menu is that they are not available in the Transformer stage.

Your alternative is a series of "=" comparisons with OR operators between them.
by ray.wurlod
Thu Sep 14, 2006 8:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Folder Stage, Ereplace and Field Marks (@FM)
Replies: 5
Views: 5313

Tell/show us how Prefix is defined/derived. Investigate the Cats() function and the Splice() function for easier mechanisms for adding a prefix to each element of a dynamic array. Cats(Reuse(Prefix:","),input.data) Splice(Reuse(Prefix), ",", input.data...
by ray.wurlod
Thu Sep 14, 2006 8:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI has fetched truncated data
Replies: 8
Views: 2840

No, you can still form a sum or an average even though some of the values are non-positive. Nulls might cause an issue, but you can extract these using the NVL function. No, it's not that.
by ray.wurlod
Thu Sep 14, 2006 8:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executing a shell script, passing encrypted passwords
Replies: 8
Views: 8111

There is no decryption (unless you break the algorithm yourself). However there ought to be no problem passing encrypted values; DataStage passes the correct value when authenticating to databases etc.
by ray.wurlod
Thu Sep 14, 2006 7:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI has fetched truncated data
Replies: 8
Views: 2840

Does the query work in another client, such as TOAD or sqlplus, or does it run out of resources there also? Summing 8 million values can quite possibly lead to a value larger than can fit in the target data type. You might like to use larger numeric data types than you currently have specified. Corr...