Arnd, checkout http://www.datastagexchange.com/etlarticlelist.php , Ray has what you need posted there. This is the companion site, and predecessor to DSXchange.
-Ken
Search found 4992 matches
- Tue Mar 15, 2005 9:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple Instance Job Invocations
- Replies: 9
- Views: 2727
- Tue Mar 15, 2005 8:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Target Table gets locked after 27000 records get inserted
- Replies: 16
- Views: 4169
- Mon Mar 14, 2005 11:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Target Table gets locked after 27000 records get inserted
- Replies: 16
- Views: 4169
- Mon Mar 14, 2005 11:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to retrieve multiple rows using lookup table
- Replies: 10
- Views: 4109
The problem with using an OCI/ODBC lookup is that it will take forever, basically all 70 million rows in the item master table will generate a SQL query against the product table. You do the math, that's 70 million queries. All 70 million rows have to exit the item master instance, traverse the netw...
- Mon Mar 14, 2005 10:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to retrieve multiple rows using lookup table
- Replies: 10
- Views: 4109
- Mon Mar 14, 2005 10:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to retrieve multiple rows using lookup table
- Replies: 10
- Views: 4109
Maybe we can help point you in a direction that better utilizies the features in DataStage. Can we get an idea of row counts in the source and reference tables? There are alternatives, such as high-performance hash files that provide reference capabilities, and maybe just approaching your design dil...
- Mon Mar 14, 2005 12:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading folder name
- Replies: 3
- Views: 474
Do not use DataStage transformation jobs to do file renaming. This is a misuse of the tool. It would be far easier, faster, and scalable to write a simple korn, perl, whatever, script to do this. Using DataStage will mean that your job will read each file and write the contents out again. There is n...
- Mon Mar 14, 2005 12:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading folder name
- Replies: 3
- Views: 474
What are you trying to do? If you are using DataStage to move files around, you're making a big mistake. This stage is meant to be used for reading a bunch of 1 line data files and turn it into a single dataset where the contents of the files become rows of data. It is NOT to be used to shuffle file...
- Mon Mar 14, 2005 12:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Merging Data
- Replies: 3
- Views: 566
- Mon Mar 14, 2005 11:23 am
- Forum: Information Analyzer (formerly ProfileStage)
- Topic: what is the differnce between profile stage and audit stage
- Replies: 2
- Views: 2275
- Mon Mar 14, 2005 11:22 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Log
- Replies: 1
- Views: 388
Yes. Make sure you: 1. Didn't run out of disk space on the project 2. Reset the job to see if any phantom messages show up in the log 3. Look at the system resource utilization at the job the job "mysteriously" died. You may have exceeded an unknown threshold for concurrent files open, user memory l...
- Mon Mar 14, 2005 9:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Retrieving CATegory information
- Replies: 6
- Views: 1154
There's no direct API as far as I know. You could see if the MakeJobReport API or switch on dsjob has it in its output, and then you'll have to parse for it. It seems a lot of the functionality like this is absent, forcing you to use MetaStage for documented and supported means to gain this informat...
- Sun Mar 13, 2005 9:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Writing the data to sequential file
- Replies: 3
- Views: 525
- Sun Mar 13, 2005 9:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Writing the data to sequential file
- Replies: 3
- Views: 525
- Fri Mar 11, 2005 2:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: job crash handling
- Replies: 3
- Views: 750
The transactions will rollback to the last commit. There's nothing you have to do. Now of course, if you're committing every 10K rows and your job crashes at 50K rows, you'll still have 40K rows inserted/updated. If you set to 0 the transaction count, you have one commit at the end so that a rollbac...