Search found 42189 matches

by chulett
Tue Aug 11, 2009 1:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple of contraints condition in Transformer
Replies: 1
Views: 953

You don't need "IF" statements in a constraint, just expressions that evaluate to true or false. So, ignoring the part where we don't know what "is good" means, at a high level you would use this in the constraint: (Require_Flag for Col1 = "Y" and DataType of Col1 is Go...
by chulett
Tue Aug 11, 2009 1:18 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: keep job logs for terminated RTI instances
Replies: 3
Views: 3160

I know of no reason why RTI job logs would simply "go away" unless you have auto-purge turned on and then still it wouldn't happen with the timing you are talking about. Keep in mind that RTI jobs are multi-instance jobs so each current 'invocation' will filter its own logs out of them 'ma...
by chulett
Tue Aug 11, 2009 11:15 am
Forum: General
Topic: Kill Job If Lookup Finds Contraints
Replies: 5
Views: 1773

Use DSGetLinkInfo() from a routine in a Sequence job to check to see how many rows went down the 'invalid' link. Only run the load job when that says '0'.
by chulett
Tue Aug 11, 2009 9:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSLinks from a transformer
Replies: 10
Views: 2386

Hmmm... makes my brain hurt... but I trust you. :wink:
by chulett
Tue Aug 11, 2009 9:48 am
Forum: General
Topic: DB2 on z/OS - Most Efficient Database Stage to Use
Replies: 8
Views: 4999

Probably introduced in 8.1.
by chulett
Tue Aug 11, 2009 8:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Access issue
Replies: 10
Views: 2310

So, first place to check would be your "3rd party system" and see if they are the guilty party. If not, then suspect your ftp script / process.
by chulett
Tue Aug 11, 2009 8:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding an entire element in a string
Replies: 3
Views: 1071

Got to give credit where credit is due... Ken Bland taught me that one many moons ago. 8)
by chulett
Tue Aug 11, 2009 8:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database tablename length in DS
Replies: 5
Views: 2548

And 30 for Oracle but that's all in the database, not in DataStage.
by chulett
Tue Aug 11, 2009 7:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to increase Performance of ds Job
Replies: 3
Views: 1371

Define 'very low performance' and describe in detail what you are doing in the transformer.
by chulett
Tue Aug 11, 2009 7:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Access issue
Replies: 10
Views: 2310

You need to figure out what added the spaces(?) to the end of the filename and fix it. Before that, you'll need to use a wildcard.
by chulett
Tue Aug 11, 2009 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Divident by zero
Replies: 27
Views: 6206

Actually, it is the fourth transformer as the crow counts.
by chulett
Tue Aug 11, 2009 7:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSLinks from a transformer
Replies: 10
Views: 2386

I honestly don't think that will introduce the 'process break' you'd need to really make that work. :?
by chulett
Tue Aug 11, 2009 7:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit Interval
Replies: 1
Views: 771

With DIRECT=TRUE there are no commits possible. You would need to do a 'conventional' load - DIRECT=FALSE - to be able to control the commit level. And then those are just 'normal' inserts, not really a bulk load.
by chulett
Tue Aug 11, 2009 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: difference between Dynamic_RDBMS and oracle OCI stage
Replies: 14
Views: 7554

No, when set to 'Oracle' the DRS stage uses OCI. When set to 'ODBC' it... well, I'm sure you can figure that one out.
by chulett
Tue Aug 11, 2009 5:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSLinks from a transformer
Replies: 10
Views: 2386

Arnd, when someone does this, click on 'Reply with quote' in their original post and you'll see what they thought they were posting, ASCII art wise. They're looking for two links from a transformer to first completely process one link and only then completely process the second. You could do it in a...