Search found 15603 matches

by ArndW
Wed May 13, 2009 7:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with IIS v8.1 on Redhat Linux [Abnormal termination]
Replies: 12
Views: 7768

With a bit of work the actual statement that caused the failure can be found, but it is quicker to approach the problem from the other side. Is it just this table that is causing the problem? What data types are in this table?
by ArndW
Wed May 13, 2009 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration file Performance Tuning
Replies: 6
Views: 2191

At Version 7.x there will probably be no difference in performance due to how DS actually allocates IOs. This might be different at V8 but I haven't done any specific testing. During job execution monitor your Disk IO over your controllers and device and see if they are relatively well balanced; onc...
by ArndW
Mon Apr 27, 2009 9:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IBM InfoSphere DataStage
Replies: 1
Views: 639

this is just a new name or branding from IBM, the product remains the same. The current main release of DataStage is 8.
by ArndW
Thu Apr 23, 2009 5:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSWaitForJob Timing Out after 15 seconds
Replies: 10
Views: 3421

Hmm, the status of 99 combined with multi-instance jobs... Do you have auto-purge settings for this job?
by ArndW
Thu Apr 23, 2009 5:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file goes wrong, thousands of files
Replies: 11
Views: 4581

Look into one of the files, if it is an ASCII text file with what looks like record contents then you have a type 1 or 19 file (most likely 19 if the file names are long) - actually, that is what I should have asked - what are the file names? Do they bear any relation to the keys?
by ArndW
Thu Apr 23, 2009 5:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while loading data into oracle table
Replies: 3
Views: 827

I don't know what the cause is, but seeing the word "type" would lead me to look at what Oracle data types you are using.
by ArndW
Thu Apr 23, 2009 5:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file goes wrong, thousands of files
Replies: 11
Views: 4581

Assuming you have about 80000 records in the file I would say that you created the file as a type 1 or 19 file, where each "key" in the hashed file is a sequential file with the key as filename and the hashed file record contents get written to the file.
by ArndW
Thu Apr 23, 2009 5:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSWaitForJob Timing Out after 15 seconds
Replies: 10
Views: 3421

It might be that your system is overloaded during the startup phase. Have you monitored the system activity (CPU and memory)?
by ArndW
Fri Apr 10, 2009 8:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inserting Japanese characters in DB2
Replies: 1
Views: 1104

NLS always involves the settings on BOTH sides, so you need to know what map is being used in your database, then tell DataStage to output that set.
by ArndW
Fri Apr 10, 2009 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Conversion
Replies: 5
Views: 1477

Note that "Philip Law" and "Mchen" are not part of any date system that I know of, so you would need to remove that part of the string prior to conversion.
by ArndW
Fri Apr 10, 2009 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Project Migration Approach
Replies: 5
Views: 3247

I've done this conversion several times. The DataStage portion is the easiest part - your scripts are likely to cause you more conversion issues. The most efficient approach is as Craig has already suggested.
by ArndW
Fri Apr 03, 2009 1:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Speed up a hash Lookup (Partial Key) created and build index
Replies: 13
Views: 5870

Going through ODBC to do a direct hashed file lookup is slow. Using partial keys is slow. Could you give an example of the partial 3 key lookups you are doing, as you might be able to create an index on the hashed file and use that directly for the looking or at least avoid full table scans when usi...
by ArndW
Fri Apr 03, 2009 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Memory problem with Funnel and Transformer
Replies: 7
Views: 1794

Reduce the number of nodes in your configuration file and/or sort your input data.
by ArndW
Mon Mar 30, 2009 1:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before/After Stage subroutines
Replies: 10
Views: 11677

I am not at a DataStage client at the moment, but know that I have used Before/After job routines at Version several times in the past so they are still in the product. I would guess that the before/after routines in stages might refer to BASIC transform stages, though.
by ArndW
Mon Mar 30, 2009 1:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer
Replies: 11
Views: 1994

For the second time in this thread, it cannot be done in a transformer becuase you never know when the last row has arrived.