Search found 15603 matches

by ArndW
Fri Jun 08, 2007 5:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage Customer_LoadIDocs..E1KNA1M
Replies: 1
Views: 915

Have you attempted to reset the jobs in question in the director and then looking for a log entry titled "from previous run..."? This might help you diagnose the problem.
by ArndW
Fri Jun 08, 2007 2:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file question
Replies: 9
Views: 1819

It will load the file to memory until it determines that it won't fit; the program isn't smart enough to detect from the file size that it cannot fit. This load causes IO and CPU and can take a long time on many systems, so it is best to do as Craig has already suggested and don't set the switch.
by ArndW
Fri Jun 08, 2007 2:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IPC STAGE
Replies: 6
Views: 5079

...If a particular stage is used for look up and simultaneously updated in the same job... That is a very contrived example, since turning on any type of buffering would force the same thing to happen without use of IPC. In addition, if you make the IPC buffer size less than double the record size ...
by ArndW
Fri Jun 08, 2007 1:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trim Function
Replies: 3
Views: 1734

If you are using a simple TRIM you will be removing all leading, trailing and duplicate spaces as well at tabs from the string. This is not the same thing as a null. I recall a setting in PX for Oracle where a string of spaces can be treated as null, but as far as I recall that doesn't happen in ser...
by ArndW
Fri Jun 08, 2007 12:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routines
Replies: 1
Views: 509

The routines cannot be viewed from the operating system, the data is stored in hashed files and can only be accessed using DataStage.
by ArndW
Fri Jun 08, 2007 12:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IPC STAGE
Replies: 6
Views: 5079

I have to partially agree and disagree with the previous 2 posters regarding how an IPC stage affects processing. In a nut shell IPC stage allows as to use multiple CPUs at the same time. The important differentiation there is not the CPU usage, but that by using an IPC you have created distinct pro...
by ArndW
Thu Jun 07, 2007 7:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to run two sequencer with common jobs
Replies: 3
Views: 919

What you want in this case is to use the multi-instance capabilities of DataStage.
by ArndW
Thu Jun 07, 2007 7:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trim Function
Replies: 3
Views: 1734

DataStage server doesn't care about data types. The trim function can be used on string or numeric contents, i.e. you can TRIM("123",'2','A') to remove all 2's from a number.
What kind of a TRIM() call are you using and what do you wish to do with the data?
by ArndW
Thu Jun 07, 2007 7:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Phantom Output File: incomplete <response> file
Replies: 2
Views: 936

It looks like your selector doesn't account for all possible data values.

What selector mode have you specified? What have you put into your "not found" condition?
by ArndW
Thu Jun 07, 2007 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abort a Job if No rows are selected from source
Replies: 9
Views: 7221

-1 means you have specified one or more invalid input parameters. Is your first parameter, the job handle, being set correctly with a DSAttachJob() call or using the DSJ.ME variable? Are the stage and link names correct? Once all 3 are set appropriately you will get a non-negative number back - eith...
by ArndW
Thu Jun 07, 2007 3:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in creating a DB2 table
Replies: 3
Views: 2397

Have you tried entering this SQL directly to see if the same error occurs - and if it might give more output?
by ArndW
Thu Jun 07, 2007 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reverse Pivot
Replies: 9
Views: 1686

If your input data is sorted by key and fld1 then you can use the "classical" approach as done in Server jobs. Put in a transform stage and use stage variables to store your interim output columns and last column data data, set the constraint to only output rows when the key-fld1 changes and output ...
by ArndW
Thu Jun 07, 2007 12:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to capture projects metrics
Replies: 2
Views: 750

The DSGetJobInfo() call will retrieve much of the information you are looking for. There are other DSGet{Link/Stage/Parameter}Info() calls which supply additional information.

Another option is to check this forum for references to Kim Duke's ETLSTATS
by ArndW
Wed Jun 06, 2007 7:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Editing Sequential files
Replies: 4
Views: 981

In your sequential definitions what character did you specify as EOR?
by ArndW
Wed Jun 06, 2007 7:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To speed up the aggregator
Replies: 15
Views: 5784

pre-sort the incoming data and tell the aggravator about it.