Search found 42189 matches

by chulett
Tue Oct 04, 2005 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with Delimited, required_column_missing problem
Replies: 4
Views: 1310

That's because you appended rows with X+1 columns in them onto the end of rows with only X columns. If you want to keep the old rows in the file and still be able to read them in, in the reader stage scroll the Columns tab over to the right and change the value of Incomplete Columns. It defaults to ...
by chulett
Tue Oct 04, 2005 8:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update existin rows only option's warnings
Replies: 4
Views: 941

As long as the performance is acceptable to you - no.
by chulett
Mon Oct 03, 2005 10:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: updating oracle table
Replies: 3
Views: 1139

... and get those DBAs to add that index over the key fields so it doesn't have to do a full table scan on every row to find the one to update. :wink:
by chulett
Mon Oct 03, 2005 10:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing Routines
Replies: 4
Views: 1067

As noted, one of your best sources of inspiration are the routines supplied with DataStage itself. The source for all of them are easily accessed in the Manager. Study them. Make copies of them and then change them to suit your own needs.
by chulett
Mon Oct 03, 2005 10:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination-add_to_heap() Unable to allocate memory
Replies: 10
Views: 4028

Craig -- How to increase the write cache at the project level?? If i turn off the write caching the performance is very slow. I hardly ever have write caching turned on and I can get very high speed performance from hashed file writes - provided the hashed file is properly precreated. That being sa...
by chulett
Mon Oct 03, 2005 6:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update existin rows only option's warnings
Replies: 4
Views: 941

Sure - stop sending update rows to it for keys that don't exist. :wink:

Seriously... hashed file lookup... existing keys... only issue an update when you get a hit on the hashed file.
by chulett
Mon Oct 03, 2005 6:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination-add_to_heap() Unable to allocate memory
Replies: 10
Views: 4028

Re: Abnormal Termination-add_to_heap() Unable to allocate me

2. add_to_heap() - Unable to allocate memory (Warning) This job reads from oracle and loads in to two hash files. Each hash file has around 15 million records. Once it reaches around 2 miilion records it gives this warning and the job continues. Both hash files are dynamic and write caching is enab...
by chulett
Mon Oct 03, 2005 11:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: If hiredate is NULL, then..
Replies: 6
Views: 1674

Re: If hiredate is NULL, then..

Even with this, when the hiredate is NULL, I am getting the difference as 0, and not 100 as specified. Point of fact - your hiredate is not null or the check would in fact succeed. Question would be what is the source of this data - flat file, database, what? Probably better to do something more ge...
by chulett
Mon Oct 03, 2005 10:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email Notification activity
Replies: 9
Views: 2580

Manager - Routines / Built-In / Utilities - DSSendMailTester.
by chulett
Mon Oct 03, 2005 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calculating count ONLY on first occurence of each customer
Replies: 5
Views: 1083

I think when the first record is processed, the stage variable (svKey) doesn't hold any value (probably NULL). Don't "think" - know what it is by explicitly setting it's Initial Value in the stage variables property box. And set it to something non-null that you know will be different than any firs...
by chulett
Mon Oct 03, 2005 6:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call a routine from OCI stage
Replies: 3
Views: 891

Can't be done there.
by chulett
Mon Oct 03, 2005 6:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Multi Instance Job
Replies: 13
Views: 2935

The typical answer there would be to use the routine (via the Routine Activity stage) in a Sequencer job. The output of the routine, the dynamic filename, could then easily be passed as a parameter to a downstream job. Keep in mind that, if you try and let the sequencer 'automatically handle failure...
by chulett
Mon Oct 03, 2005 6:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call a routine from OCI stage
Replies: 3
Views: 891

What kind of "routine"? If you mean stored procedure, then you can call it in the before- or after-sql tab of the OCI stage.
by chulett
Sun Oct 02, 2005 8:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Specifying the order to Group by in AGG
Replies: 1
Views: 549

By entering the columns in that order.
by chulett
Sun Oct 02, 2005 7:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Multi Instance Job
Replies: 13
Views: 2935

Seconldy how can i use the macro in Job Paramater to assign value as in some cases it is very helpful. I don't believe that you can as this would seem to me to fall into the same class of problem as the "job parameter in a job parameter" one. The manual states that the various macros "can be used i...