Search found 42189 matches

by chulett
Fri Oct 03, 2014 9:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fifo \pipe error
Replies: 10
Views: 10907

Was going to link to that one as well but it is so UNIX-centric that I mostly decided to stick with this from the wrap-up paragraph: "If the above tests do not isolate the cause of file system i/o problem, then it may be necessary to contact Information Server support for assistance in performi...
by chulett
Fri Oct 03, 2014 9:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TXT File with fixed length fields
Replies: 9
Views: 10191

Not sure it applies much to writing a fixed-width file but wanted to point out that your "Null field Width" values need to match the size of your char field. So: Edit Row: * COD_MDL_ORG String Type : Field Width = 4 Nullable / Null Field Value = " " * TPO_RPT String Type : Field ...
by chulett
Fri Oct 03, 2014 7:10 am
Forum: General
Topic: IBM InfoSphere Information Server Pack for SAP
Replies: 2
Views: 2474

A "NullPointerException" is generally thrown by a code bug. I'd contact your official support provider for help with that one.
by chulett
Fri Oct 03, 2014 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fifo \pipe error
Replies: 10
Views: 10907

Interesting. I was assuming, much like Ray, that this happened when multiple instances were stepping on each other. But if it can happen while the job runs in isolation that's a whole 'nuther kettle of fish. I believe that STATUS of 2 means "file not found". If you were on a UNIX server I'...
by chulett
Thu Oct 02, 2014 8:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TXT File with fixed length fields
Replies: 9
Views: 10191

Found this in an older post:
Kryt0n wrote:In order to get the fixed width file format recognised I have had to go to the Columns tab, right click, choose Edit Row and set a Field Width value for each row (i.e. the Length field despite being set, doesn't appear to be relevant to the field width)
by chulett
Thu Oct 02, 2014 1:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing parameters to the query read from a file
Replies: 2
Views: 1865

You can't, at that point the parameters are just text. You need to build the file on the fly with the parameter values substituted in, ready to go.
by chulett
Wed Oct 01, 2014 3:40 pm
Forum: General
Topic: Recover a project
Replies: 6
Views: 3774

Have you made any progress on this, Tony?
by chulett
Wed Oct 01, 2014 1:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to consume messages from MQ continuously
Replies: 15
Views: 14396

As am I. MQ is not my forte.
by chulett
Wed Oct 01, 2014 11:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to consume messages from MQ continuously
Replies: 15
Views: 14396

Split to your own topic, linked back.
by chulett
Tue Sep 30, 2014 10:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to start ORCHESTRATE network connection on node
Replies: 6
Views: 5430

Or with this config file, perhaps?
by chulett
Tue Sep 30, 2014 10:19 am
Forum: General
Topic: Recover a project
Replies: 6
Views: 3774

I'm guessing you'll need to run something like this: VERIFY.SQL SCHEMA {ProjectName} First to see what it says and then perhaps add the FIX option to the end of it. But in your shoes I'd wait until someone like Ray wanders by and confirms or denies that. In the interim, wouldn't hurt to run it and s...
by chulett
Tue Sep 30, 2014 9:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-12541: TNS:no listener
Replies: 6
Views: 4416

All of those tests just prove that the instance is up and accessible. However, each could have their own unique Oracle environment setup - without you validating that they all use the correct ORACLE_HOME for instance and library path, it doesn't really tell you all that much. Other than the fact tha...
by chulett
Tue Sep 30, 2014 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update Oracle table taking long time
Replies: 2
Views: 2007

Make sure there's an index in the target table supporting your update WHERE clause. Sounds like there isn't.
by chulett
Tue Sep 30, 2014 7:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-12541: TNS:no listener
Replies: 6
Views: 4416

Assuming both the database and listener are indeed up (confirmed by the DBA?) then more than likely you're using the wrong connection information in the job.
by chulett
Tue Sep 30, 2014 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NULL Handling in Runtime Column Propagation
Replies: 10
Views: 6340

APT_ORACLE_PRESERVE_BLANKS is probably what you're thinking of. However, "blanks" here equal spaces as in trailing spaces during a bulk load so I'm not sure it's going to help. An empty string will be turned into a NULL in Oracle regardless.