Search found 602 matches

by abc123
Mon Jul 23, 2007 9:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between ODBC and DRS stage for SQL Server
Replies: 4
Views: 4056

When writing to SQL Server, on version 7.5.1A, ODBC stage cuts off the first character for character columns and DRS stage cuts off the last character. I find out DRS stage better. It is more powerful.
by abc123
Thu Jul 19, 2007 10:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal/String manipulation problem
Replies: 7
Views: 1998

Yuan_Edward, I cannot use Floor my integers bigger than Datastage will allow.
by abc123
Wed Jul 18, 2007 8:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal/String manipulation problem
Replies: 7
Views: 1998

The error being returned is:

"Numeric string expected for returned value from function call
'strip_whitespace'. Use default value"
by abc123
Wed Jul 18, 2007 12:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal/String manipulation problem
Replies: 7
Views: 1998

Decimal/String manipulation problem

TempVal: StripWhiteSpace(Link1.IncomingCol) * 100 Data type of IncomingCol is char. If I do: Left(TempVal, index(TempVal,'.',1)-1) it gives me the error: Numeric string expected for returned value from function call 'strip_whitespace'. Use default value. However, if I do: Left(Left(TempVal, index(Te...
by abc123
Tue Jul 17, 2007 9:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage problem
Replies: 10
Views: 2576

Ok. My apologies. Turns out that this was due to that column's length. I needed to Trim and reduce the size by 1. Thanks ArndW for your help. Really appreciate it.
by abc123
Mon Jul 16, 2007 6:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage problem
Replies: 10
Views: 2576

I have a 2 node configuration. The partitioning on the transformer is set to Auto.
by abc123
Mon Jul 16, 2007 5:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage problem
Replies: 10
Views: 2576

Here is an interesting observation. When I send the data directly from the join stage to a sequential file, it is fine. However, when I send it through a transformer stage, the data has duplicates. This is despite the fact that, there is absolutely no transformation being done in the transformer sta...
by abc123
Mon Jul 16, 2007 8:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage problem
Replies: 10
Views: 2576

Result is the same with 1 node config file.
by abc123
Mon Jul 16, 2007 2:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage problem
Replies: 10
Views: 2576

Running it with a single node configuration file is not an option as I can't do it in production, so I didn't try. I did see one post here about converting running all previous stages sequentially which I did but to no avail.
by abc123
Mon Jul 16, 2007 12:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage problem
Replies: 10
Views: 2576

Join stage problem

I have 3 files going into a join stage. I am doing has partioning and sorting on Col1 on all 3 input links in the join stage. File1: 200 rows (Col1) File2: 50 rows (Col1) File3: 50 rows (Col1, Col2) My key column is Col1. Col2 has sequential increasing distinct values. After the inner join, I get 50...
by abc123
Mon Jul 09, 2007 11:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join problem!
Replies: 4
Views: 953

I take that back. I haven't found the solution. After I converted everything to integer in a transformer stage, the join still returns less value. I'll post some data.
by abc123
Mon Jul 09, 2007 10:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join problem!
Replies: 4
Views: 953

I found the problem. It is due to join on a char field. The actual numeric data inside is smaller than the field width in all cases and this is causing the problem. Is there any way to get around this? Should I pad blanks on the left?
by abc123
Mon Jul 09, 2007 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join problem!
Replies: 4
Views: 953

Join problem!

I have 2 links joining 10 rows each. I know that they are identical on the key column so that is definitely NOT the reason. The key column is char but has numbers like 1234. The number of rows I get after the inner join is less than 10. Could the positioning of the numbers in the column be a reason?...
by abc123
Sun Jul 08, 2007 1:43 pm
Forum: IBM QualityStage
Topic: Address parsing questions
Replies: 5
Views: 3495

But how would you tell QS this:

"Interpret A as Ave in this situation"?
by abc123
Sun Jul 08, 2007 1:42 pm
Forum: IBM QualityStage
Topic: Another address parsing question
Replies: 4
Views: 2276

/ is not in my striplist but I can add it with an escape. However, 34 1/2 is the street address and that's how I want QS to see it in my override. So if I had the / in my strip list, would my override be: HN1PD1SN1SN1ST1 I guess I am going to run this through, find the address and see how QS treats ...