Search found 4992 matches
- Thu Mar 18, 2004 9:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Best Method for Concatenating data from multiple rows.
- Replies: 7
- Views: 2034
You must have ordered data so that the string is built in the right order. You can use a hash file to write out the row using your unique identifier. Reference the existing row, if it's not there, you write out the key and the text. If the row is there, write out the key and the reference column con...
- Wed Mar 17, 2004 6:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to allocate memory
- Replies: 2
- Views: 1338
- Tue Mar 16, 2004 10:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORAOCI8 X ORAOCIBL
- Replies: 3
- Views: 1850
Visit www.asktom.oracle.com and search his archives. This guy is the definitive expert on Oracle, and you can see a lot of discussion and benchmarking concerning using sqlldr. You can get his books, his Expert One-On-One is a must read for Oracle enthusiasts.
- Tue Mar 16, 2004 10:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Moving BLOB data
- Replies: 1
- Views: 1029
- Tue Mar 16, 2004 12:16 pm
- Forum: IBM QualityStage
- Topic: Padding data with spaces
- Replies: 3
- Views: 2433
- Tue Mar 16, 2004 9:57 am
- Forum: IBM QualityStage
- Topic: Padding data with spaces
- Replies: 3
- Views: 2433
- Mon Mar 15, 2004 5:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading a seq file mult times in same job
- Replies: 1
- Views: 727
- Mon Mar 15, 2004 4:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Comments in transform stage
- Replies: 3
- Views: 777
- Mon Mar 15, 2004 3:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Comments in transform stage
- Replies: 3
- Views: 777
- Sun Mar 14, 2004 11:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: key management
- Replies: 8
- Views: 2631
The surrogate key hash file contains a localized set of values to use for assignments. You need to keep these values in sync with the actual target table. Imagine if you manually loaded more rows into the target table, now your hash file has no awareness of the current maximum value assigned in the ...
- Sun Mar 14, 2004 11:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to run a Server job by setting a row limit
- Replies: 3
- Views: 1072
If you are running the job from Director or the Designer debugger, the invocation dialog box has a tab that allows you to set the limit of rows. If you are using custom job control, there is an API to call after you have attached a job handle. Look in your DS BASIC manual, I think it's called DSSetJ...
- Sun Mar 14, 2004 9:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Which is more efficient Hash Tables or OCI lookups
- Replies: 17
- Views: 4908
If you read the disk caching guide under your Start menu, you'll see that the only size limitation is 1/2 a terabyte, and that the guide actually has a tuning table where up to 2 gigabyte hash files are documented. In addition, it doesn't talk anywhere about a user limitation, in fact, it describes ...
- Sun Mar 14, 2004 2:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Which is more efficient Hash Tables or OCI lookups
- Replies: 17
- Views: 4908
Ray said it better than I have been able to say. If your requirement is to put 30 million rows into a hash file for repetitive lookup, you will probably exceed the read caching capabilities. My technique suggests partitioning the data so that you have a subset in N hash files, where the size of the ...
- Fri Mar 12, 2004 11:05 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Link Partitioning/Collecting or Coded Round Robin Partitions
- Replies: 7
- Views: 2314
Are you guys talking about a Control job calling these 4-5 identical jobs (with different selection criteria) or executing them as 5 separate jobs from director? In fact does it make a difference? You can either make physical clones, or use job instances. The affect is the same. An instance is just...
- Fri Mar 12, 2004 6:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Which is more efficient Hash Tables or OCI lookups
- Replies: 17
- Views: 4908
Re: Partitioning jobs
In your suggestions you would have the input file read by a transformer and have 'mypartitionnumber' passes as a parameter, is that correct? Yes. One master job, with N instantiated clones. The job uses a partitioning algorithm to only get a portion of the source data. My question is this....we hav...