Search found 42189 matches

by chulett
Tue Aug 13, 2013 9:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion from source type, Possible range limit
Replies: 4
Views: 1357

Already wrote up something on that subject.
by chulett
Tue Aug 13, 2013 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion from source type, Possible range limit
Replies: 4
Views: 1357

So is your source decimal(13,9) or decimal(13,2)? While you can 'convert' one to the other (13,2 to 9,2), you're going to get that 'limitation' warning when going from a larger field to a smaller one since technically one may not fit into the other. If you are certain the values in the source will a...
by chulett
Tue Aug 13, 2013 6:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: vertical pivot is hanging
Replies: 8
Views: 1462

How much data are we talking about? How long did you wait before you declared that it was hung?
by chulett
Mon Aug 12, 2013 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date - 1 day transformationm
Replies: 2
Views: 1248

ps. And there was no year zero, so your ELSE is invalid.
by chulett
Mon Aug 12, 2013 6:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-Defined SQL with DB2 and ODBC stage
Replies: 6
Views: 2681

Exactly what I meant by "it also understands key fields so it know which go in the where clause and which don't"... Ray was more explicit (rigorous) in his explanation. Basically two separate sets of ordinal positions.
by chulett
Sat Aug 10, 2013 2:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import consumed only x bytes warning
Replies: 5
Views: 5938

If nothing here has helped, suggest you start your own post and give us the details of your problem.
by chulett
Fri Aug 09, 2013 7:50 am
Forum: General
Topic: Filter condition based on value in field
Replies: 1
Views: 805

An Execute Command stage can read the sequential file via cat and then trigger expressions can check the value and branch accordingly. Alternately, use a Nested Condition stage to perform the check and branching after reading in the file.
by chulett
Fri Aug 09, 2013 7:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-Defined SQL with DB2 and ODBC stage
Replies: 6
Views: 2681

They are positional bind parameters rather than explicitly numbered. So generally the first ? gets the first field, etc. However, it also understands key fields so it know which go in the where clause and which don't.
by chulett
Fri Aug 09, 2013 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Numeric field - loss of precision on large numbers
Replies: 10
Views: 5826

So why is this marked as Resolved?

(Note: I just "unresolved" it! - Andy)

(Heck, I could have done that... was gonna wait for a reply. :wink: )
by chulett
Thu Aug 08, 2013 7:15 am
Forum: General
Topic: Import a Text File in Cobol Format
Replies: 2
Views: 1270

Is this question related to IA / ProfileStage at all?

(Relocated to General - Andy)
by chulett
Wed Aug 07, 2013 10:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Numeric field - loss of precision on large numbers
Replies: 10
Views: 5826

If that reply is directed my way, I wasn't suggesting string math (although I did mention it earlier) but rather simply strings. Seeing as how both the source and target are flat files there's no reason to be treating them as anything other than Varchar fields in my book.
by chulett
Wed Aug 07, 2013 10:14 pm
Forum: General
Topic: Losing log in multi instance enabled Job version 8.1 linux
Replies: 4
Views: 3238

You can't check in the Administrator, that's just the project-wide default. You need to check the individual jobs via the Director as the default could have been overridden there.
by chulett
Wed Aug 07, 2013 4:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Numeric field - loss of precision on large numbers
Replies: 10
Views: 5826

Still say they should just be handled as strings.
by chulett
Wed Aug 07, 2013 2:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning - Import consumed only n bytes of record
Replies: 7
Views: 7176

Typically you see that message on a fixed-width file, is that what you have? Short answer (which the search should have turned up) is your metadata doesn't match with the actual data in the file, specifically it is expecting all of your records to be 208 bytes in length and it found one that ended a...