Search found 13 matches

by sas
Tue Jul 29, 2008 11:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata multiset tables and duplicates
Replies: 6
Views: 7512

Re: Teradata multiset tables and duplicates

Just try using Teradata Multiload stage. It may work for you. I have 2 purposes for this posting. One is to let people know about an issue we are seeing in case they are encountering the same issue. The second is to glean whatever information is available about this from others that have already wor...
by sas
Thu May 01, 2008 12:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is there any way to catch a record that is giving warning.
Replies: 4
Views: 2044

May be your typecasting is failing due to invalid data being passed for date conversion. Before using typecasting function, use IsValid and do the conversion only if this function is returning true. PX makes that kind of debugging difficult. Do you know which particular conversion is causing it? If ...
by sas
Wed Apr 30, 2008 11:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata along with datastage
Replies: 4
Views: 3155

hamzaqk, Just wanted to clarify on the temporary table creation mechanism. Will it not be create SET TABLE orch_workxxx as select * from source with NO data Instead of create SET TABLE orch_workxxx as select * from source with data Thanks it will ignore the values when you use the enterprise stage. ...
by sas
Thu Aug 02, 2007 2:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Low Value Handling
Replies: 8
Views: 2909

Cool .. It worked !!! Thanks. :)
by sas
Thu Aug 02, 2007 12:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Low Value Handling
Replies: 8
Views: 2909

Not working :(
by sas
Wed Aug 01, 2007 11:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Low Value Handling
Replies: 8
Views: 2909

I already did that. I had set TTTTT in default for a CHAR(5) column. It's not working.
by sas
Wed Aug 01, 2007 10:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Low Value Handling
Replies: 8
Views: 2909

Low Value Handling

I am processing MF (EBCDIC) data. There are some CHAR columns having X'00' value (low value) at MF. We are doing NDM and processing through DS job. I want to intialize with "" if column encounters this low value. (1) How to initialize such columns with "" in Sequential Reader whi...
by sas
Tue Jul 24, 2007 6:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Length issue
Replies: 6
Views: 2420

Maveric solution will work based on the assumption that column data type is CHAR not VARCHAR.
by sas
Thu Jul 19, 2007 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue in record Extraction
Replies: 12
Views: 4033

Create a small dummy job to read the same dataset instead of reading from Data Set Management tool to check how many records are being read.
by sas
Thu Jul 19, 2007 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue in record Extraction
Replies: 12
Views: 4033

Create a small dummy job to read the same dataset instead of reading from Data Set Management tool.
by sas
Thu Jul 19, 2007 10:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Catching all duplicate and non duplicate records seperately
Replies: 6
Views: 2801

Put Copy after reading the data. One output of copy should have only key columns for Aggregator stage. Aggregator will give count of duplicate records along with key columns. Use second output of Copy as an input (left link) to Join alongwith Aggregator output. The Join output should be used as an i...
by sas
Thu Dec 28, 2006 11:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: A Value Search in a String
Replies: 9
Views: 4562

Ray - Thanks a lot for your attention. We do have these 80 columns in available (other process is calculating them). These String1 and String2 is formed in the Transformer based on the predefined categories in order to address different conditions. Examples of some conditions - (1) Perform different...
by sas
Thu Dec 28, 2006 5:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: A Value Search in a String
Replies: 9
Views: 4562

A Value Search in a String

I have following 2 strings columns coming into the transformer - String1 = "Qty1,Score1|Qty2,Score2|Qty3,Score3|.......|Qty20,Score20" String2 = "Qty1,Score1|Qty2,Score2|Qty3,Score3|.......|Qty20,Score20" I need to find out if there is a tie between Qty across these two String Co...