Search found 42189 matches

by chulett
Thu Aug 21, 2008 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter Set Parameter Override Not Propagated
Replies: 6
Views: 2568

I'm fairly certain that that has been reported as a bug here. :?
by chulett
Thu Aug 21, 2008 6:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Consuming split files in a job
Replies: 12
Views: 2601

Me, I'd just cat all the files together then bulk load. Once. :wink:

Depending on your skill level, you could build a looping Sequence that doesn't wait for each job so that (eventually) they will all be running in parallel, but then you may end up with locking and/or resource problems.
by chulett
Thu Aug 21, 2008 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Find the last day of the month
Replies: 9
Views: 7662

Close. The MONTH.LAST transform returns an internal date and expects the input as YYYY-MM. But you are correct that you can compare a date to this date and see if they match, as long as you've prepared both properly.
by chulett
Thu Aug 21, 2008 6:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Service IBMWAS6Service not running
Replies: 9
Views: 7268

Then it seems that you should open a case with your official support provider, ask them how to resolve this.
by chulett
Thu Aug 21, 2008 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to stop creation of reject file.
Replies: 2
Views: 1217

In other words, you can't. So don't check to see if the file was created, check to see if rows were written to it. DSGetLinkInfo w/ DSJ.LINKROWCNT is one common way.
by chulett
Thu Aug 21, 2008 6:35 am
Forum: General
Topic: loader report
Replies: 5
Views: 1433

:? What about DataStage? You can certainly create 'bad' and 'discard' files if you like.
by chulett
Wed Aug 20, 2008 10:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File : Header generation
Replies: 7
Views: 1522

Constraint?

Code: Select all

@OUTROWNUM = 1
by chulett
Wed Aug 20, 2008 10:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Good Data transforming approach
Replies: 9
Views: 1885

True. Our primary sources here do a less than stellar job of enforcing their own dang rules, so generally we get to do that. :wink:
by chulett
Wed Aug 20, 2008 8:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Good Data transforming approach
Replies: 9
Views: 1885

I think if a data file is extracted from a database and loaded into DataStage then the explicit validation of every field is going overboard. If no transformation happens between the database table and the CSV file it is unlikely contain data that doesn't match the metadata of the source table. To ...
by chulett
Wed Aug 20, 2008 8:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Good Data transforming approach
Replies: 9
Views: 1885

Not to mention the fact that proper naming and use of stage variables, which your post seems to exemplify, goes a long ways towards self-documenting the logic. As Ray notes, the jobs I've seen where constraints are huge collections of expressions fill one with dread at the prospect of having to main...
by chulett
Wed Aug 20, 2008 2:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: inserted value too large for column
Replies: 2
Views: 1141

So you found the culprit, I take it?
by chulett
Wed Aug 20, 2008 2:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: inserted value too large for column
Replies: 2
Views: 1141

You need to double-check because Oracle is telling you that something is too big. I wish it would say what was but it doesn't so you have to find it all on your lonesome.
by chulett
Wed Aug 20, 2008 2:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: BLOB Data
Replies: 19
Views: 12167

Cool. :D
by chulett
Wed Aug 20, 2008 11:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems due to DataStage version change (7.5 to 7.5.3)
Replies: 5
Views: 1747

You haven't stated your problem(s).
by chulett
Wed Aug 20, 2008 10:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a way make the hash file lookup case insensitive?
Replies: 1
Views: 1230

As noted, make both 'sides' upper case. While you can do this in the Key Expression for the input, the hashed side will need to be upcased when built. If you need the original case, keep that as an additional data field.