Search found 42189 matches
- Thu Jun 02, 2005 7:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Storing CRC values
- Replies: 16
- Views: 7969
Well... not attachments of any kind, but it should support images as long as they are hosted somewhere accessable. So it would be possible (and I seem to recall at least one person actually doing this here) to take a screen print of a job, save it as a .jpg or .bmp (etc) and putting it on an image h...
- Thu Jun 02, 2005 4:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Aborted Sequencer: Attempting to Cleanup after ABORT raised
- Replies: 7
- Views: 1419
- Wed Jun 01, 2005 5:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Trapping a connection failure and proceeding
- Replies: 3
- Views: 965
How are you running these scheduled jobs? The concept of master sequencers jobs needing to 'reset or recompiled' manually before they can be run again can be handled by a wrapper script around the dsjob command. As to your main question, I've never actually done this in Production but that is my und...
- Wed Jun 01, 2005 12:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Project accidentally initialised as Version Project
- Replies: 3
- Views: 862
Re: Project accidentally initialised as Version Project
jzparad wrote:I'm trying to determine if it's worth the effort of exporting, rebuilding and importing the project.
Nope, not in my mind. As far as I know all it does is create three (or four?) special hash files in the project to track things and add a routine or two, other than that... [shrug]
- Wed Jun 01, 2005 7:34 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: @INROWNUM Problem
- Replies: 5
- Views: 1570
First off, you can't have more than one Input link to a transformer. Secondly, that's exactly what @OUTROWNUM does - track the number of output records per link. That's what I assumed the OP meant by "I want the value to be assigned based on the number of input rows from one link". Assuming "input f...
- Wed Jun 01, 2005 7:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle 8 taking 4 hrs to load !
- Replies: 8
- Views: 1962
Yup, pretty standard practice. If done properly, the hash will improve performance. Build the hash based on the records to be processed, not everything in the target for starters. You may even be able to 'kick it up a notch' by only using the OCI stage for the updates and bulk loading (via sqlldr) t...
- Wed Jun 01, 2005 6:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: @INROWNUM Problem
- Replies: 5
- Views: 1570
Re: @INROWNUM Problem
snassimr wrote:I want that the value be assigned based on number of input rows from one link
Then use @OUTROWNUM instead.
- Wed Jun 01, 2005 6:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle 8 taking 4 hrs to load !
- Replies: 8
- Views: 1962
That's what I was afraid of. The "X then Y" update actions are the slowest performing actions you can use, especially if you pick the wrong one. To run the 'else' action, the first action must fail so you are doing double work for those. To me, those two update actions are to be avoided at all costs...
- Wed Jun 01, 2005 6:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Schedule same job to run multiple times during the day
- Replies: 6
- Views: 2603
You could also use a Unix utility like crontab to schedule it for multiple times. As noted, using the DataStage 'scheduler' does put your job into cron (or at for a one-off) on a UNIX server. On a Windows server, it is building an AT entry for you. No reason to do that yourself, though you may find...
- Wed Jun 01, 2005 6:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Schedule same job to run multiple times during the day
- Replies: 6
- Views: 2603
Basically, the answer to your question is 'no'. However, rather than hijack this thread (since your question isn't answered by scheduling a job multiple times) please repost your question as a new topic. This way we can help you with your particular issue without taking this topic off into the weeds...
- Wed Jun 01, 2005 6:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Generate Random Number
- Replies: 9
- Views: 5330
Do not consider using any kind of a 'random' number generator for surrogate key handling. Any perceived perfomance gain from doing so will quickly degenerate as the size of your target table grows. The methodologies Arnd mentions are the tried-and-true ones and have been discussed to death here, so ...
- Wed Jun 01, 2005 6:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle 8 taking 4 hrs to load !
- Replies: 8
- Views: 1962
Talk to your DBA first and see if you even have permissions to drop and rebuild them. You'd need scripts to do that for you in the long run, scripts that could be run before and after job or even before and after stage. Some of the considerations for this isn't the number of rows you are loading but...
- Tue May 31, 2005 2:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Issue with Date Column
- Replies: 1
- Views: 927
There's been quite a few posts on the subject of handling Oracle DATE fields that a search will turn up. This one for example. Read throught it, search for some other posts (oracle and timestamp as keywords seemed to work well ) and then let us know if you have any other questions.
- Tue May 31, 2005 2:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FTP
- Replies: 1
- Views: 731
- Tue May 31, 2005 1:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Running Job Sequence within a Job Sequence
- Replies: 2
- Views: 892
A Sequencer is just another DataStage job, so you run them via the Job Activity stage like any other. You have to propogate your sub-sequencer errors up to the parent sequencer via one of the 'Utility' routines - UtilityWarnToLog for instance - when any job in a sub-sequencer fails. The warning or f...