Search found 42189 matches

by chulett
Fri Jul 06, 2007 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restartability of the jobs in Server sequencer
Replies: 7
Views: 3197

Sequence 'General' job properties: * Enable checkpoints so sequence is restartable on failure * Automatically handle activities that fail Those two options are key, especially the first. The second maybe less so since you've already have Sequence jobs with (I assume) error handling built into them. ...
by chulett
Fri Jul 06, 2007 7:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Multi row return
Replies: 1
Views: 1537

And we appreciate linguistic vividity. :wink:
by chulett
Fri Jul 06, 2007 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can i move an PDF object into my oracle target
Replies: 6
Views: 2003

Flat files can be treated as 'external tables' but I don't see how pdf files could. And you'd need to create the Directory object first in Oracle.
by chulett
Fri Jul 06, 2007 6:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting the Jobs list in the Export file
Replies: 6
Views: 1705

That would give you a count, not a list. What you'd need to capture would be the 'Identifier' record that immediately follows that record, it will contain the job's name. An example snippet: BEGIN DSJOB Indentifier "AnimalCountries" DateModified "2005-05-26" TimeModified "14...
by chulett
Fri Jul 06, 2007 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getting the timestamp value of executable file
Replies: 5
Views: 1297

Depending on where you are doing this, there's also a BASIC function (FILEINFO?) that would return that.
by chulett
Fri Jul 06, 2007 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Waiting for File
Replies: 6
Views: 2013

If you do change the code in the job control and someone else makes a change to the job at a later stage, will the job control be recreated i.e. will my "roll your own" change be overwritten? Of course. No-one suggested changing the generated code, merely that it be examined to help explain the iss...
by chulett
Fri Jul 06, 2007 6:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling subroutine: DSR_SCHEDULE
Replies: 7
Views: 2310

At this point, seems like a call to your Support provider is in order to resolve this.
by chulett
Thu Jul 05, 2007 5:57 pm
Forum: Site/Forum
Topic: When will the Site be back to normal?
Replies: 6
Views: 4596

Holy Moly, I gots me some emails! :D

In the pipe, five by five...
by chulett
Thu Jul 05, 2007 4:48 pm
Forum: General
Topic: Probelm regarding Jobsequencer.
Replies: 9
Views: 2855

I'm sure you need DIGITS(CommandActivity.$CommandOutput) and/or to strip field marks from the command output. :wink:
by chulett
Thu Jul 05, 2007 3:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic File Layouts
Replies: 4
Views: 1227

Pass in a job parameter that controls the layout and dynamically re-arrange what field goes where based on it. Should be fairly simple if you don't need 'Columns headings' as the first record. If so then you'll need to figure a way to 'manually' write it out as your first record. Either that or keep...
by chulett
Thu Jul 05, 2007 1:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic File Layouts
Replies: 4
Views: 1227

For a fixed width file, you'll need to use two different jobs. If it was just a 'normal' file, there would be some games you could play...
by chulett
Thu Jul 05, 2007 1:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read Multiple Lines from Text file
Replies: 7
Views: 2186

I know. You'll need to detect that you've just read a 'header' record and parse out the report name from it. When you do that, assign that value to the stage variable in its deviation, otherwise for any non-header record just set the value of the stage variable to itself as kind of a 'no-op'. For ex...
by chulett
Thu Jul 05, 2007 1:29 pm
Forum: General
Topic: Probelm regarding Jobsequencer.
Replies: 9
Views: 2855

So... what exactly do you have in the Start Loop's Loop Definition From: property?
by chulett
Thu Jul 05, 2007 1:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read Multiple Lines from Text file
Replies: 7
Views: 2186

Sure, read it into a stage variable each time you read that record and then append that stage variable to each output record.