Search found 53125 matches

by ray.wurlod
Wed Sep 08, 2010 2:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: improving the performance in transformer stage
Replies: 4
Views: 1916

Look for any opportunity for doing less processing, for example evaluating functions once in stage variables rather than many times in column derivation expressions, evaluating constants once when initializing stage variables rather than once per row, and so on. Once we see what you're doing more su...
by ray.wurlod
Wed Sep 08, 2010 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic for DB2 sequence develop in Data stage
Replies: 1
Views: 1176

The DDL pieces can be done in Before-SQL.
The DataStage job should select the first 10 rows and pass these through to an INSERT statement.
Create the key column up front and include the reference to the sequence within user-defined SQL.
by ray.wurlod
Wed Sep 08, 2010 1:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Initial Load in Datastage?
Replies: 1
Views: 1483

When's the interview? These terms can mean different things in different scenarios, but I shall assume you are referring to some kind of ETL context. The initial load is where the target table is empty at the start of the run. Delta loads compare the new data with what's already in the table and onl...
by ray.wurlod
Wed Sep 08, 2010 1:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete the data
Replies: 2
Views: 922

INNER JOIN is perfectly OK, but you need at least one parameter marker so that a value can be passed from DataStage to trigger the SQL.
by ray.wurlod
Wed Sep 08, 2010 1:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the conductor node, section leader and player?
Replies: 16
Views: 10204

There's no bug. Therefore I stand by my position to make my answer a premium one. If you don't know the answer to this particular question you are still able to function as a DataStage developer.
by ray.wurlod
Wed Sep 08, 2010 1:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error calling conversion routine decimal_from_string
Replies: 1
Views: 1574

This message suggests that the precision of your floating point data type is insufficient to handle the maximum number of digits possible in the CHAR data type. Note that this does not relate to the actual number of digits in the CHAR field, it relates to the size of the CHAR field. It might also be...
by ray.wurlod
Wed Sep 08, 2010 1:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unexpected token Error using a Job Parameter in transformer.
Replies: 1
Views: 951

Welcome aboard.

Please show us exactly how you are referring to the job parameter in the Transformer stage expression.

Did you build the expression using the Expression Editor?
by ray.wurlod
Wed Sep 08, 2010 1:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query used in universe stage
Replies: 11
Views: 2600

I don't know the answer to your question, but suspect that the answer is "no". Here is the link to sign up for premium membership.
by ray.wurlod
Wed Sep 08, 2010 1:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion from Decimal to varchar
Replies: 4
Views: 1279

What you get and what you expect are equivalent. Decimal representation in DataStage includes leading and trailing non-significant zeroes and placeholder to prove that precision and scale are being managed correctly. You can remove each with Trim() functions or, if you are 100% certain that there ar...
by ray.wurlod
Wed Sep 08, 2010 1:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update column in all the jobs
Replies: 13
Views: 4425

Life is not so easy in version 8. Are the jobs linked to regular or shared table definitions? In either case, what does the Locator property of the table definition tell you? Why not perform a Where Used analysis on the column? - You may find that it's used in a surprisingly small number of jobs, wh...
by ray.wurlod
Wed Sep 08, 2010 1:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Negative Values in Decimal
Replies: 9
Views: 2943

Something like

Code: Select all

 Iconv(InLink.TheDecimal, "MD2-") 
should do it.
by ray.wurlod
Wed Sep 08, 2010 1:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: scd type 2
Replies: 6
Views: 1923

There is a complete answer in my previous post. Premium membership is not expensive, at less than 30c (Rs12) per day, and it helps to keep DSXchange alive. Please strive for a professional standard of written English on DSXchange. We are not a mobile telephone, so SMS-style abbreviations are unneces...
by ray.wurlod
Wed Sep 08, 2010 1:37 am
Forum:
Topic: Fasttrack- Left and field concatenations are not working
Replies: 6
Views: 2225

Try building one within the tool. See (and report) whether that makes a difference.
by ray.wurlod
Tue Sep 07, 2010 4:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: per-node messages in director log
Replies: 1
Views: 766

I don't believe it's possible. Consider the reporting mechanism. Each player process on each node has stdout and stderr redirected to its parent process (the section leader). Section leaders feed all things-to-be-logged back to the conductor, which logs everything it receives from every node. Of cou...
by ray.wurlod
Tue Sep 07, 2010 4:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Append into the LookUp Fileset?
Replies: 8
Views: 4273

I don't think it's possible. There is no overwrite/append property in the Lookup File Set stage. But you can construct something like the following.

Code: Select all

LookupFileSetprevioussource
     |
     V
  Funnel  ---->  LookupFileSet
     ^
     |
(new data)