Search found 42189 matches

by chulett
Tue Aug 25, 2009 6:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Restartability
Replies: 7
Views: 3910

The 'reset if required' comment wasn't specific to your problem, just a general note of a Best Practice.
by chulett
Tue Aug 25, 2009 3:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: right truncate in transformer
Replies: 5
Views: 1664

So, Arnie... not going to take the pop quiz? :( I generally don't like to give pure code solutions for things like this as I'm afraid there's no learning going on, one can simply plug it in and move on without have to actually understand how it works. I feel like I'm handing out fish rather than a f...
by chulett
Tue Aug 25, 2009 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage Variable Data types in Server jobs
Replies: 6
Views: 3768

Wouldn't that be scale? :?
by chulett
Tue Aug 25, 2009 3:55 pm
Forum: IBM QualityStage
Topic: Reg Before SQl Statement
Replies: 4
Views: 1607

So... is this a QualityStage job? :?
by chulett
Tue Aug 25, 2009 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ERROR showing in my job
Replies: 2
Views: 3520

Sounds like somewhere in your job you have a Decimal field with no precision or scale defined, hence the reference to: "0,0" for schema type "decimal".
by chulett
Tue Aug 25, 2009 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: right truncate in transformer
Replies: 5
Views: 1664

The trims may not be strictly needed but make this more fool-proof:

Code: Select all

Field(Trim(YourField)," ",1,DCount(Trim(YourField)," ")-1)
Pop quiz: what exactly is this doing? :wink:
by chulett
Tue Aug 25, 2009 3:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Restartability
Replies: 7
Views: 3910

I would wager you should be using "Reset if required then Run" in your Job Activity stages, otherwise you'll need to manually reset any aborted jobs. However... The 'Automatically handle activities that fail' option is your friend here to avoid the 'branch from all jobs' approach, but I'd ...
by chulett
Tue Aug 25, 2009 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: right truncate in transformer
Replies: 5
Views: 1664

Are you trying to remove the last word from the field? Is what you need actually "QDL Marine and Static Diesel Engines" in this example?
by chulett
Tue Aug 25, 2009 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: right truncate in transformer
Replies: 5
Views: 1664

:? There's no difference between your 'before' and 'after' examples that I can see. It looks like you tried to remove all of the 'n' characters but I can't see why. Yet.

Help us out here.
by chulett
Tue Aug 25, 2009 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob return code issue
Replies: 1
Views: 1204

We've seen this in the past on occassion, I myself saw it a number of years ago but never was able to get an explanation from Ascential as to why it would happen. And then it stopped happening. You might have to work through much chaff to find the wheat but an exact search for "141" should...
by chulett
Tue Aug 25, 2009 11:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Errors stopping services
Replies: 4
Views: 3438

A quick Google for "glibc detected double free or corruption" explains what it means but I'm not sure there's anything you can do about it. I assume you are running DataStage on Linux?

As to all of the startup stuff, that just seems to be how it works now. :?
by chulett
Tue Aug 25, 2009 11:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage Variable Data types in Server jobs
Replies: 6
Views: 3768

Can you show us the actual calculation that gets you that value rather than something 'like' it? Still suggest you either up that max precision value or look into the 'string math' functions which are not bound by that setting.
by chulett
Tue Aug 25, 2009 9:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column order behaviour from a transformer (derived columns)
Replies: 5
Views: 1637

Ah... forgot it was specific to those two stages.
by chulett
Tue Aug 25, 2009 9:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column order behaviour from a transformer (derived columns)
Replies: 5
Views: 1637

That sounds... familiar. I'm pretty sure the issue has been posted before, along with something you can do to stop that behaviour. :?
by chulett
Tue Aug 25, 2009 7:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: front-end to DataStage
Replies: 4
Views: 1741

I haven't personally, but sure, there are posts here discussing that. The API is published and generally involves using the 'dsjob' function from the command line. The actual code for dsjob is published as well, so some people have coded closer 'to the metal' as well, from what I recall. A search fo...