Search found 53125 matches
- 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...
- 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
- 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...
- 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
- 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
- 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...
- 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
- 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.
- 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...
- 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...
- 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 likeshould do it.
Code: Select all
Iconv(InLink.TheDecimal, "MD2-") - 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...
- Wed Sep 08, 2010 1:37 am
- Forum:
- Topic: Fasttrack- Left and field concatenations are not working
- Replies: 6
- Views: 2225
- 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...
- 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)