Search found 42189 matches

by chulett
Fri Sep 06, 2013 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata error code - RDBMS code 6705
Replies: 1
Views: 4085

Re: Teradata error code - RDBMS code 6705

synsog wrote:Please help me on this issue and let me know what exactly causing the issue.
Have you tried searching online for the error code? Or asking your Teradata DBA? Those should be the first things you do.
by chulett
Fri Sep 06, 2013 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Single row to multiple rows with multiply
Replies: 7
Views: 2461

Another suggestion? Upgrade. Your solutions are being limited by the age of your version. Transformer looping (introduced in 8.5 from what I recall) would give you a better solution.
by chulett
Thu Sep 05, 2013 10:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to fetch integer part from decimal data
Replies: 10
Views: 4173

As noted, no since that's not what you asked for... and a quick check of the documentation would have answered your question. If you ever need that functionality, the Ceil() function would be appropriate.
by chulett
Thu Sep 05, 2013 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting Empty Strings to Blank - Server to Parallel Eds
Replies: 4
Views: 1658

iq_etl wrote:Would we lose any efficiency/processing by using a BASIC Transformer stage in our parallel jobs? Would it make more sense to write a parallel routine (which needs to be in C, correct?)
Yes. Yes. Yes++. :wink:
by chulett
Thu Sep 05, 2013 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Grouping in XML stage
Replies: 14
Views: 4257

I was under the impression that having more than one marked repetition element would cause an abort... no? :?
by chulett
Thu Sep 05, 2013 12:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic to count repeated rows
Replies: 9
Views: 2835

Of course. More pseudo-code than actual "code code" in this case, me thinks. :wink:
by chulett
Wed Sep 04, 2013 11:09 pm
Forum: General
Topic: DS Director and Designer is not responding
Replies: 18
Views: 7108

That would be my job much of the time... done. :wink:
by chulett
Wed Sep 04, 2013 10:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic to count repeated rows
Replies: 9
Views: 2835

Just saying that the derivation as posted makes no sense. IF deptno = deptno Then deptno +1 Else 1 The bold part above needs to be some other variable. And (pet peeve alert) since the fake data you posted was only "similar" to whatever you are really doing, we've got no way to know what th...
by chulett
Wed Sep 04, 2013 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple of 100, 1000
Replies: 4
Views: 1215

MOD() the field by 100 or whatever... if the answer is zero there's no remainder and thus evenly divisible.
by chulett
Wed Sep 04, 2013 10:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic to count repeated rows
Replies: 9
Views: 2835

Prince_Hyd wrote:IF deptno = deptno Then deptno+1 Else 1
You might want to double-check the code you posted...
by chulett
Wed Sep 04, 2013 10:21 am
Forum: General
Topic: uvodbc.config file
Replies: 4
Views: 2521

"Some what"? Give us a shot at clarifying whatever remains unanswered or unclear...
by chulett
Wed Sep 04, 2013 10:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while loading in to SQL SERVER table
Replies: 6
Views: 2562

We still haven't come anywhere close to solving the issue of why after it fails it reruns successfully with the same data. Adding in explicit conversions and validity checks could help narrow that down, be sure to come back once you've done that and let us know where things stand.
by chulett
Wed Sep 04, 2013 10:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: capturing the stored procedure log
Replies: 2
Views: 1108

What database? Basic answer would be to "raise an error" so the calling process knows something went wrong.
by chulett
Wed Sep 04, 2013 7:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem while Reading Float DataType from DataBase
Replies: 9
Views: 6995

iq_etl wrote:What is meant by 'cast to decimal type in query'.
CAST function. As to your last question - no, it would be whatever data type you are casting to.