Search found 42189 matches

by chulett
Thu Mar 06, 2014 12:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Buildop C++
Replies: 9
Views: 5705

Hmmm... the link I posted worked (and still works) fine for me. Looks like you found the same information, however.
by chulett
Thu Mar 06, 2014 11:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Buildop C++
Replies: 9
Views: 5705

Hopefully this helps.
by chulett
Thu Mar 06, 2014 10:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Column Count
Replies: 8
Views: 2686

You want to count the number of columns that do not contain nulls or do something with the counts from inside all non-null columns? Seems to me you'll still have to check each one individually for null so I'm thinking just stage variables in a transformer will be appropriate.
by chulett
Thu Mar 06, 2014 9:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to extract the array of column data to target file ?
Replies: 5
Views: 1955

It cannot be a simple NUMBER. Is this actually a TABLE OF / INDEXED BY data type? Regardless, unless it's just numbers stored in a delimited string field you'll have to do the extraction of the components in the database. And I have to ask - any particular reason you put a "{" on the left ...
by chulett
Thu Mar 06, 2014 8:42 am
Forum: General
Topic: Sequence job - trigger problem
Replies: 6
Views: 3208

Andy, I think so but it seems to me in that case it would never work properly rather than not work once in a while. And Tony, you can actually look at the generated Job Control code in the Sequence job to see what / how it checks the status. Actually, you may be thinking of a Reject constraint, I do...
by chulett
Thu Mar 06, 2014 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Real Time MQ job Error: ORA-01555: snapshot too old
Replies: 2
Views: 2170

Have a chat with your DBA. It needs to maintain a 'snapshot' of the data's initial values over the period of time your select happens and it uses UNDO space for that. Other processing on the system is eating it up and thus it cannot maintain your snapshot. So as you noted, one solution is to add mor...
by chulett
Thu Mar 06, 2014 8:16 am
Forum: General
Topic: Sequence job - trigger problem
Replies: 6
Views: 3208

Re: Sequence job - trigger problem

TonyInFrance wrote:when we define a trigger as Expression Type is OK - (Conditional) does this not catch status = 1?
That's all it catches. If you are certain your job finished OK (status=1) and yet your Otherwise trigger fired, that sounds like a bug to me.
by chulett
Thu Mar 06, 2014 7:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CDC Stage strange issue
Replies: 8
Views: 2706

mandyli wrote:Is this will impact any performance?
Yes, as the documentation specifically notes.

Best Practice is to add it to all jobs set to FALSE. This will allow you to override it when needed for debugging purposes on an 'as needed' basis.
by chulett
Wed Mar 05, 2014 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Tables with many columns
Replies: 2
Views: 1035

Or... if you are crafting your own SQL that selects the columns, let the stage generate that for you at runtime. No need for any 'custom / user defined' SQL for anything of that nature.

Note that this is not the same as RCP.
by chulett
Wed Mar 05, 2014 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: COBOL flat file import
Replies: 28
Views: 16574

You cannot simply take a record that contains both string and packed decimal data in EBCDIC and convert the entire record to ASCII. Any possibility that is what is happening? You need to only convert the string fields, the packed fields will be happily destroyed if any 'conversion' is done on them. ...
by chulett
Wed Mar 05, 2014 2:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CDC Stage strange issue
Replies: 8
Views: 2706

Re: CDC Stage strange issue

mandyli wrote:Is this good idea to enable '$APT_DISABLE_COMBINATION = True' at project level instead of job level?
No.
by chulett
Wed Mar 05, 2014 9:21 am
Forum: General
Topic: failed to authenticate the current user against the selected
Replies: 3
Views: 2169

Just curious... did you do an exact search here for that error message? There are 12 other posts that include it, many of them resolved so it seems like your solution should be out there.
by chulett
Wed Mar 05, 2014 8:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to extract the array of column data to target file ?
Replies: 5
Views: 1955

Well, one question answered. What data type is this field in Oracle? A VARRAY? Post the actual column definition, please. If it is, you can't simply 'drag it to the target', you'll need to process it using PL/SQL via (one suggestion) a stored function so you can 'select' the summed value from the fi...
by chulett
Wed Mar 05, 2014 8:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to extract the array of column data to target file ?
Replies: 5
Views: 1955

It may be in an array? Or is? :? Also curious what actual database this is and the internal data type. I would imagine that it (the actual database) provides functions for dealing with this 'array' but hard to say without the requested details. Is "this conversation" actually part of your ...