Search found 42189 matches

by chulett
Fri Dec 04, 2009 10:16 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Unknown error SQLCODE 536631
Replies: 2
Views: 2070

You ended up posting this three times. Please delete the other two before someone replies to them. This one you can't because... well, because I've replied to it.
by chulett
Fri Dec 04, 2009 6:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: row value to be populated in all the fields
Replies: 5
Views: 1167

What's your target? If it's something updatable (like a db table) then you could load the data as is and if '02' is detected, issue an update post load.
by chulett
Fri Dec 04, 2009 6:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: row value to be populated in all the fields
Replies: 5
Views: 1167

You'll need to make two passes through the data, once to check for the '02' model and a second time to make the changes if you find one. That check can be a another job or a script as noted, if you've landed the data.
by chulett
Fri Dec 04, 2009 6:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restart sequencer after abort
Replies: 13
Views: 5984

I'm curious why you built a 'check pointing' system for your job sequences when that functionality is already built in? :?
by chulett
Fri Dec 04, 2009 1:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: after job subroutine to reset a failed independent job
Replies: 10
Views: 5221

Clear but fatally flawed. :? You need to understand that 'before job' does not mean 'before the job starts' just like 'after job' does not mean 'after the job finishes'. In both cases, the job is actually running when those sections trigger but one is before the objects on the canvas are started and...
by chulett
Fri Dec 04, 2009 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restart sequencer after abort
Replies: 13
Views: 5984

You'll need a mechanism to record the latest commit point and then another mechanism to check that (typically via a contraint) so that you only start 'processing' rows once you are past the previous commit point. A successful job run would set that to zero. Of course, all this assumes a static source.
by chulett
Fri Dec 04, 2009 11:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using a Formula instead of value to populate a field in DB2
Replies: 6
Views: 1788

Sure, because when it is 'coming in from the source' it is just a string value you want to load into that field.
by chulett
Fri Dec 04, 2009 11:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restart sequencer after abort
Replies: 13
Views: 5984

Sreenivasulu wrote:Restartability of sequence does not work as desired. This view is based on my experience.
And based on my experience it works exactly as desired. :wink:
by chulett
Fri Dec 04, 2009 11:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restart sequencer after abort
Replies: 13
Views: 5984

There is a huge difference between restarting a Sequence at the failure point and doing the same within a single job. The former is an automatic feature of checkpoints while the latter needs to be explicitly coded into your job.
by chulett
Fri Dec 04, 2009 10:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: .CSV - cannot view the data
Replies: 8
Views: 3401

You are converting a string to a decimal and your string can potentially hold more data than will fit in your decimal. It is alerting you to that fact.
by chulett
Fri Dec 04, 2009 10:24 am
Forum: General
Topic: Batch error - Attempting to Cleanup after ABORT raised
Replies: 7
Views: 6479

Bad path. Permissions.
by chulett
Fri Dec 04, 2009 9:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: .CSV - cannot view the data
Replies: 8
Views: 3401

I doubt it does. The job may be 'running fine' but is it processing any records? Are all the fields in your flat file defined as Varchar?

That or the file is empty. :wink:
by chulett
Fri Dec 04, 2009 8:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Migration from DS 8.0 to 8.2 - Help required
Replies: 8
Views: 1876

You really need to be taking these concerns / questions to IBM. Horse's mouth and all that.
by chulett
Fri Dec 04, 2009 8:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between sparse lookup vs normal lookup?
Replies: 2
Views: 2538

That difference is documented as well.
by chulett
Fri Dec 04, 2009 8:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Count the rows in a file
Replies: 9
Views: 3390

100 records doesn't sound all that huge to me. :wink: Server can easily process millions of records in a single file, can't imagine PX would have any issues but it can depend on exactly what you're doing. I would also be curious what issues you are facing with your large files, perhaps a better solu...