Search found 42189 matches

by chulett
Fri Mar 23, 2007 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling a routine from a Before/After Subroutine
Replies: 6
Views: 1450

Search the forum for DSU - off the top of my head you'll need (at the very least) a DEFFUN statement and the DSU prefix. And you may need to refer to it in all UPPER CASE in the DEFFUN as that's how they are catalogued.

Anywho, a search of the forums for DSU and/or DEFFUN should reveal all. :wink:
by chulett
Fri Mar 23, 2007 7:59 am
Forum: General
Topic: Question about Exception Handler
Replies: 7
Views: 2085

Again, just to be clear - under what exact circumstances are you expecting the Exception Handler to jump into the fray? Without anything special, it will catch problems with the Sequence job itself - jobs not compiled, non-existent parameters, that kind of stuff - but not something like a job failur...
by chulett
Fri Mar 23, 2007 7:38 am
Forum: General
Topic: Question about Exception Handler
Replies: 7
Views: 2085

Under what circumstances are you expecting it to execute? Granted, most of the time you would use the two together as that greatly simplifies your error handling, but there's no requirement they be used together. Make sure you read the Help on the stage to understand the functionality it brings to t...
by chulett
Fri Mar 23, 2007 7:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Crashes while loading table definintion
Replies: 6
Views: 3724

Seems to me you would be best served by contacting Support for this.
by chulett
Fri Mar 23, 2007 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: $INCLUDE DSU_BP <name of job>.B
Replies: 2
Views: 1051

Not an area I've ventured much into, to be honest. The '.B' extension would imply BASIC runtime code AFAIK. 'DSU' means something User supplied. 'BCI' is the BASIC Call Interface, so probably something to get around the licensing restrictions? Or to leverage non-branded ODBC drivers? [shrug] Just gu...
by chulett
Fri Mar 23, 2007 7:17 am
Forum: General
Topic: Dynamism in DataStage
Replies: 13
Views: 4537

What about it? Are we moving now from Server to PX jobs? :?

Don't see how it would help as it can't make metadata up out of whole cloth.
by chulett
Fri Mar 23, 2007 7:14 am
Forum: General
Topic: Question about Exception Handler
Replies: 7
Views: 2085

Sure.

Keep in mind, however, that the way it works changed significantly over the earlier 7.x releases. Which exact version are you running?
by chulett
Fri Mar 23, 2007 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage EE with windows
Replies: 20
Views: 8558

Perhaps it's only an 'upgrade' issue, and wouldn't affect someone starting with 8.x? Wondering...
by chulett
Fri Mar 23, 2007 6:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ULIMIT uvconfig
Replies: 11
Views: 4513

I think that the limit of 2Gb of Hashed files was "removed" in the lastest versions. No. How I can change the hash file to 64-bit in DS Designer? You can't, at least not in the Hashed File stage itself. I must do the CREATE.FILE command in universe? Or from your O/S, and with the -64BIT option. Fro...
by chulett
Fri Mar 23, 2007 6:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question and errors,Oracle 10 g datastage 7.5.2
Replies: 4
Views: 3962

If you have an Oracle client installed and everything configured, why would you use ODBC over OCI? :?
by chulett
Thu Mar 22, 2007 8:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trying to find the Performance PRoblem...
Replies: 11
Views: 6025

kaps wrote:Yes. I do. I had them as my second option. I got more respect for you guys ! :D

That's cool... but nothing beats someone sitting right there, putting greasy fingerprints on your screen as they point out all kinds of pertinent bits of information. :wink:
by chulett
Thu Mar 22, 2007 6:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trying to find the Performance PRoblem...
Replies: 11
Views: 6025

Your SA / Sys Admin. Got one there you can chat with?
by chulett
Thu Mar 22, 2007 4:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing parameter thru dsjob
Replies: 4
Views: 1658

The parameter name you passed on the command line as paramname in your example cannot be correct or it would not have given you that error. Whatever name you've assigned to the parameter in the job - name, not prompt or default value - is what you should be using here. And no, the command line will ...
by chulett
Thu Mar 22, 2007 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing parameter thru dsjob
Replies: 4
Views: 1658

Welcome aboard! :D

That error means the parameter name you've supplied does not exist in the job. Make sure you've spelled it correctly - case and all. And you've got the right job!
by chulett
Thu Mar 22, 2007 3:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence - Trigger - OK/Warning
Replies: 12
Views: 11940

It's in the linked posts, but to bring it here:

Code: Select all

stage_label.$JobStatus = DSJS.RUNOK Or stage_label.$JobStatus = DSJS.RUNWARN

stage_label meaning the name of the Job Activity stage to check.