Search found 15603 matches

by ArndW
Tue Jun 22, 2010 5:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timestamp problem with Teradata Enterprise stage
Replies: 5
Views: 2394

That is what it should be doing. I haven't worked with Teradata and think that this might a problem specific to that stage.
Go into the attributes for that column and explicitly set the default value for the column to NULL and see if that makes a difference.
by ArndW
Tue Jun 22, 2010 5:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insufficient blocks for partition. Reading suppressed.
Replies: 5
Views: 4224

How many bytes are expected per row? I can only imagine this type of error if you exceed the APT config setting for $APT_MAX_TRANSPORT_BLOCK_SIZE which defaults to 1048576. Or perhaps your jobs's ulimit settings are particularly restrictive.
by ArndW
Tue Jun 22, 2010 5:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Different ways to upgrade from 7.5.2 to 8.1
Replies: 8
Views: 1978

The implications of being able to use separate itags for the engine in past releases (before V8) was that you could run multiple instances concurrently on the same server. With this additional functionality I would guess that one can now do the same at version 8 assuming that the repository location...
by ArndW
Tue Jun 22, 2010 5:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timestamp problem with Teradata Enterprise stage
Replies: 5
Views: 2394

If you edit the attributes for that column, you can specify another replacement value for null values instead of the default spaces. If you were to define this column as nullable in DataStage it would keep the original NULLs from database.
by ArndW
Tue Jun 22, 2010 3:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Application stalled DSDesign.exe
Replies: 7
Views: 3397

I think it best to foreard this error to IBM through your support provider to see if they might have seen it before.
by ArndW
Tue Jun 22, 2010 2:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Job Hang - Requesting delayed metadata
Replies: 6
Views: 6662

Normally if a 2-node job runs so will a 3-node one (this is not necessarily true for a 1-node job going to a 2-node job). It would seem that your problem lies in the DB2 side of things and thus the DataStage partitioning might not be relevant. You could see if switching to a 2-node configuration get...
by ArndW
Tue Jun 22, 2010 2:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read error on column defined as Bigint in dataset
Replies: 2
Views: 1277

Could your write job be converting a character field to your BigInt and that conversion is failing and writing nulls? Is the field nullable? Put a PEEK stage into the stream and see what values are going to the dataset. If you do a "view data" on the dataset in the job which writes to the ...
by ArndW
Tue Jun 22, 2010 2:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best installation Method fo Information Server 8.1
Replies: 6
Views: 2466

Upgrade from 7 to 8 is generally considered to be less reliable than doing a clean install. There are several threads on DSXchange on this subject already.
by ArndW
Tue Jun 22, 2010 2:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage
Replies: 4
Views: 1742

Does this IBM post address your issue?

http://www-01.ibm.com/support/docview.w ... wg21265788
by ArndW
Mon Jun 21, 2010 10:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Job Hang - Requesting delayed metadata
Replies: 6
Views: 6662

How many processes are running for that job? I would try debugging it with $APT_PM_SHOW_PIDS set to true, identifying the process for DB2 and using the UNIX "truss -p {pid}" command to see what systems calls, if any, the process is using.
Also, see if your DB2 DBA can trace process status.
by ArndW
Mon Jun 21, 2010 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert multiple columns into rows.
Replies: 4
Views: 1975

It can be done using stage variables, but I agree with Ray that unless there is a good reason not to use the pivot it should be used.
by ArndW
Mon Jun 21, 2010 5:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in Reject file
Replies: 4
Views: 2003

Add "$APT_PRINT_SCHEMAS" to your job and see if the schema going to your reject there is indeed an input field "ABC".
by ArndW
Mon Jun 21, 2010 5:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert multiple columns into rows.
Replies: 4
Views: 1975

Please look into the Pivot Enterprise stage in the Parallel Job Developer Guide and, should your needs not be met by that stage, ask again here in this thread.
by ArndW
Mon Jun 21, 2010 5:25 am
Forum: General
Topic: QualityStage Training
Replies: 2
Views: 1355

Ray, are you going to be the sensei for the class?
by ArndW
Mon Jun 21, 2010 5:24 am
Forum: General
Topic: How to pass data to MQConnector
Replies: 5
Views: 1430

What happens when you enable rejects on the MQ stage? I would start with a simple job such as RowGen -> MQ to see if you have the connection set up correctly and that makes it simpler than adding Java and other stages into the mix.