Search found 4992 matches
- Tue Mar 21, 2006 8:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Link collector does not support
- Replies: 9
- Views: 2667
Sure, as long as the amount of data being feed into any fifo never exceeds a certain amount without the reader of the output draining it at or near the same rate. Think of it this way: You have a job OCI --> XFM --> fifo --> OCI. If the source OCI stage is spooling at 10000 rows/s, and the target OC...
- Tue Mar 21, 2006 8:05 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Link collector does not support
- Replies: 9
- Views: 2667
The link collector uses a fifo buffer, such as a pipe, to hold incoming rows and feed to output side. Or, simple write the data to a file and then read back from the file. The difference is the fifo can feed the output at the same time it's receiving input, the passive stage must receive all input r...
- Mon Mar 20, 2006 3:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SMPs and process distribution
- Replies: 15
- Views: 4259
Absolutely. Use job instances with a constraint that divides the rows evenly among the instances. Each job is responsible for a portion of the data. You can run 4 copies of the job, each inserting 1/4 of the rows. This is quite easy and elegant and we were doing this long before PX. I've got a docum...
- Mon Mar 20, 2006 1:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Automatically recover jobs after crash
- Replies: 16
- Views: 5052
I've got a DS Batch job that compiles other jobs. You could run this job to go recompile jobs. You can adapt it however you want. Get it from my website. You run it from the command line, have it go find "Running" jobs (or just do all jobs) and recompile them. Since it's a job, you can start it usin...
- Mon Mar 20, 2006 12:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Output Link Execution Order and commits
- Replies: 9
- Views: 3208
True Craig, but if rollback space does not allow commit at the end you'll have to commit as you go. Will that still work if you do periodic commits on separate links? I think you'll get into some issues there. I believe with double, triple, or more links you could get into a situation where you're r...
- Mon Mar 20, 2006 12:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Output Link Execution Order and commits
- Replies: 9
- Views: 3208
Hmmm, loading parents simultaneously with children. I'd think a best practice would be to do parents first, then do children. You'll benefit from dedicated mass loading of a single table instead of straddling two tables. But if what you're doing is more "real-time" microbatch using Server rather tha...
- Sat Mar 18, 2006 12:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Automatically recover jobs after crash
- Replies: 16
- Views: 5052
- Fri Mar 17, 2006 10:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine giving errors
- Replies: 12
- Views: 3041
- Fri Mar 17, 2006 4:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Automatically recover jobs after crash
- Replies: 16
- Views: 5052
Is every single job restartable from wherever it was in the middle of processing? You're sure you won't have to deal with corrupted files and such? How about data already loaded and committed? What about cleaning up temporary files and such? A hard crash usually needs a little cleanup. If the server...
- Fri Mar 17, 2006 3:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: new guy needs some help
- Replies: 3
- Views: 674
- Fri Mar 17, 2006 3:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine giving errors
- Replies: 12
- Views: 3041
I recognize your function. Here, use this logic, as I'm guessing your site has a set of my routines. Before DS 5.0, the ICONV function didn't recognize certain formats of dates. This function explicitly looked at certain date formats, including those with time elements which fouled up ICONV. DateIco...
- Fri Mar 17, 2006 2:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Finding a substring with wildcard
- Replies: 12
- Views: 4883
- Fri Mar 17, 2006 2:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Finding a substring with wildcard
- Replies: 12
- Views: 4883
For the error message, can't tell you why. But for your query, use LIKE not =
Code: Select all
UPDATE TABLE1
SET Col3 = 'DSX'
WHERE Col3 LIKE 'DSX%' - Fri Mar 17, 2006 9:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: transformer output is only one row
- Replies: 18
- Views: 3832
- Fri Mar 17, 2006 9:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: transformer output is only one row
- Replies: 18
- Views: 3832