Search found 15603 matches

by ArndW
Wed Mar 10, 2010 9:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to remove header and trailer from records.
Replies: 27
Views: 13421

If you google the UNIX "sed" command, you'll see that changing the suggest command to

Code: Select all

sed '1,2d;$d' 
should do the trick.
by ArndW
Wed Mar 10, 2010 9:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle enterprise stage performing unrequested rtrim
Replies: 9
Views: 3669

Is this an Oracle VarChar2() column and have you looked into the $APT_STRING_PADCHAR setting?
by ArndW
Wed Mar 10, 2010 8:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Truncating DB2 tables with DB2 Load
Replies: 2
Views: 1130

replace the command with the more efficient

Code: Select all

IMPORT FROM /dev/null OF DEL REPLACE INTO #TABLE#
by ArndW
Wed Mar 10, 2010 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to populate low values
Replies: 6
Views: 2080

The CFF stage is set up differently, but you only need to use it if you have OCCURS DEPENDING ON or variable REDEFINES; otherwise just use the sequential file stage and set the default value for the columns in question.
by ArndW
Wed Mar 10, 2010 8:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job control process (pid xxxxx) has failed
Replies: 9
Views: 13147

The error regarding the previously undefined variable is an old one (I'm really surprised it isn't fixed yet), but the abort within the DSD.WriteLog shouldn't be happening. If the mount point for your project directory is not close to full then it might be a corrupt log file, the easiest way to fix ...
by ArndW
Wed Mar 10, 2010 3:31 am
Forum: General
Topic: MVS 390, Char columns with complex data types
Replies: 7
Views: 1857

And since you are in Server, you can read the DB2 table as suggested above, then use a named-pipe sequential file for the cff source and thus don't even need to land your data on disk.
by ArndW
Wed Mar 10, 2010 3:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine Compilation Error (on Windows)
Replies: 10
Views: 4017

The easiest way is to attach to your project directory, then do a 'find *{Transform name}*'
by ArndW
Wed Mar 10, 2010 3:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset strange behaviour
Replies: 4
Views: 1882

Probably some of your jobs aren't using or getting passed the $APT_CONFIG_FILE parameter.
by ArndW
Wed Mar 10, 2010 3:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS Problem
Replies: 5
Views: 2821

As Ray has stated, once you go to NLS you can't go back. Jobs exported from a NLS project need to be imported into a NLS project.
by ArndW
Wed Mar 10, 2010 3:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Classifying Link Types as Source, Reference and Reject
Replies: 10
Views: 5690

The '-' sign in your output line was confusing, it made it look like negative value lists were being returned.

I can't check now, but perhaps the pivot stage is incompatible. What happens if you write a small dummy job using the px pivot and seeing if you get the same abort?
by ArndW
Wed Mar 10, 2010 2:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job control process (pid xxxxx) has failed
Replies: 9
Views: 13147

There should be other messages in the log file which hint at the cause of the problem, the message you posted is just documenting an effect. How heavily loaded is your system, are you getting timeouts in DataStage?
by ArndW
Wed Mar 10, 2010 2:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: issue on Type30 files
Replies: 13
Views: 7029

Approaching the problems one-by-one. At Version 8.1 you can store your metadata in xmeta instead of in DataStage hashed files, I haven't experimente with this but I would guess that in that case no dynamic files would be open, perhaps just the static VOC hashed file. Unless you see this problem prio...
by ArndW
Wed Mar 10, 2010 2:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reject Field if source and target data types do not match
Replies: 1
Views: 852

This is a matter of using the 'default' attribute for each column.
by ArndW
Tue Mar 09, 2010 8:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine Compilation Error (on Windows)
Replies: 10
Views: 4017

The path to the source code is listed in the compile messages, could you post that to this thread?
by ArndW
Tue Mar 09, 2010 7:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to implement this logic DS PX
Replies: 5
Views: 1517

(there is no need to open up a new thread, just reply to the previous one)

Again, could you post an example. Is the data in the form of:

Acct1,Date1
Acct1,Date2
...
Acct2,Date1

or

Acct1,Date1,Date2,Date3,...

or

"Acct1","Date1,Date2,Date3"