Search found 42189 matches

by chulett
Wed Oct 31, 2007 7:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update rows or Insert rows update action
Replies: 2
Views: 1196

Basically, yes. For those combos, the first action is tried and - if it fails - the second action fires.
by chulett
Wed Oct 31, 2007 7:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job is aborting with ORA-01455: converting column overflows
Replies: 6
Views: 9409

I just stick with Decimal in DataStage for all my NUMBER fields. Mostly it doesn't matter as they're all treated the same under the covers, guessing it's the 'double' that is causing your problem.
by chulett
Wed Oct 31, 2007 7:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job is aborting with ORA-01455: converting column overflows
Replies: 6
Views: 9409

What data type is the target column in the Oracle table? What data type did you use in the job itself?
by chulett
Wed Oct 31, 2007 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row Count
Replies: 25
Views: 10279

If you plan on using the routine in a Sequence job via the Routine Activity stage rather than Before or After job - then don't create it as a 'Before/After' routine. That will simplify things and help with your parameter passing confusion. Ray - I just tested your assertion and find that I can, inde...
by chulett
Wed Oct 31, 2007 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Name as Parameter
Replies: 16
Views: 5238

This is pretty simple in a Server job, is there nothing equivalent on the PX side? You use a 'generic' field name in a database stage and put your parameter name in the Derivation field, allowing the stage to generate the sql. You end up with something like this: SELECT #COLUMN_NAME# FROM TABLE WHER...
by chulett
Wed Oct 31, 2007 6:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row Count
Replies: 25
Views: 10279

What? How do you call it in a Routine Activity stage? I'm flabbergasted by that question - you simply point to the name of the routine using the ellipsis (...) button. That or just drag the routine itself onto the canvas from the repository browser. Just like any other stage. Pass values to it? You...
by chulett
Tue Oct 30, 2007 9:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row Count
Replies: 25
Views: 10279

Help you with what, exactly? This? how will I pass the arguments such as Job Name, Link name, Stage Name in the job. After Job routines take a single argument: InputArg. If you need to pass in multiple values, send them in as a delimited string and parse it apart as one of the first steps in the rou...
by chulett
Tue Oct 30, 2007 9:41 pm
Forum: General
Topic: Using Regular Expression in Transformer Stage Constraint
Replies: 8
Views: 10686

... and encountered the following error while compiling: Compiling: Source = 'DSU_BP/DSU.IsValid', Object = 'DSU_BP.O/DSU.IsValid' Compiling what, exactly? From the error message, it seems to be a custom routine but always best to be as explicit as possible. As Arnd notes, posting the routine (wrap...
by chulett
Tue Oct 30, 2007 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: loading Oracle table that has indexes and partitions
Replies: 3
Views: 1600

Welcome! More specifics on the problems you are having dropping and recreating indexes would help - post the actual errors if you can. Does your connection account actually have the grants it would need to do this?
by chulett
Tue Oct 30, 2007 2:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML
Replies: 2
Views: 1020

Curious why you would care, as that is perfectly valid XML. What it looks like in notepad should really be a non-issue. However... That is the default behaviour where symbols like that are translated to their 'safe' equivalents in the XML. If you don't want that to happen, change the Data Element on...
by chulett
Tue Oct 30, 2007 1:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Transfer
Replies: 2
Views: 964

Perhaps you should rethink your idea of a generic trigger file. There are various techniques. One it to check the incoming filesize at regular intervals and then process the file once it 'stops growing'. Not ideal, but I've seen it done. Another is to use a utility like fuser which purports to tell ...
by chulett
Tue Oct 30, 2007 12:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: improper datatype
Replies: 5
Views: 1497

That or post the block of code around line 165 for us to see.
by chulett
Mon Oct 29, 2007 11:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running DS job command from remote system
Replies: 3
Views: 1014

I was assuming there is nothing DataStage installed on the remote server where this was being initiated from.
by chulett
Mon Oct 29, 2007 9:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running DS job command from remote system
Replies: 3
Views: 1014

Remote shell. 'rsh' or 'remsh'. Google around or search the forums here, been discussed a number of times.