Search found 4992 matches
- Fri Oct 08, 2004 8:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Look for available number - routine question
- Replies: 22
- Views: 7529
You can do this many ways. One method may be to select all of the primary keys in use in the table and write it to a hash file. Then, use a pre-generated file containing one row of all numbers from 1 to the max in your table. Use a DataStage job to read that file of numbers, referencing the hash fil...
- Thu Oct 07, 2004 8:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Look for available number - routine question
- Replies: 22
- Views: 7529
It sounds like what you are doing is "filling in the gaps" in a surrogate key assignment sequence. Methinks you have a table who's primary key has reached it's maximum assignment value, so you have to find the unused numbers. If I'm right, you have quite a good little problem here. I'd turn the prob...
- Thu Oct 07, 2004 8:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to create operating system file
- Replies: 20
- Views: 7117
We figured out the problem. Since so many users were using this server we sometimes were trying to exceed the maximum number of files DataStage server can open at a time. The limit can be increased by increasing the Mfiles number. The other way to resolve this issue is to limit the number of users....
- Thu Oct 07, 2004 8:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to create operating system file
- Replies: 20
- Views: 7117
- Thu Oct 07, 2004 3:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Selecting Date which lies between 2 dates
- Replies: 9
- Views: 2043
- Thu Oct 07, 2004 3:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to create operating system file
- Replies: 20
- Views: 7117
Thread hijacker, DYNAMIC hash files do not use the resizing commands, only the static hashfiles. You must whack the file and recreate it. If it's important enough to save the data, then rename the hash file directory and recreate the new file under the old name. Then, use a job to copy the data from...
- Thu Oct 07, 2004 1:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Inserting into Oracle
- Replies: 9
- Views: 2904
The worst problem is that 30K of data per row is going to bog down the processing. It will be like a pineapple going thru a garden hose. I GUARANTEE you will have terrible performance, this is too much data to juggle thru DataStage. Yes it will work, but what a performance penalty. This is simply a ...
- Thu Oct 07, 2004 12:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to create operating system file
- Replies: 20
- Views: 7117
- Wed Oct 06, 2004 8:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extract file name from path
- Replies: 5
- Views: 1458
- Wed Oct 06, 2004 2:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Subtracting 2 dates in Transformer
- Replies: 22
- Views: 5053
- Wed Oct 06, 2004 1:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Subtracting 2 dates in Transformer
- Replies: 22
- Views: 5053
- Wed Oct 06, 2004 1:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Subtracting 2 dates in Transformer
- Replies: 22
- Views: 5053
- Wed Oct 06, 2004 1:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Subtracting 2 dates in Transformer
- Replies: 22
- Views: 5053
- Wed Oct 06, 2004 12:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Subtracting 2 dates in Transformer
- Replies: 22
- Views: 5053
This is getting frustrating. I'm guessing you just pasted the format returned from the OCI/ODBC stage you're using, not what truly exists in the transformer at the time the math is happening. I asked you to write out the values from the transformer stage variables into a file and look at them there....
- Wed Oct 06, 2004 10:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Subtracting 2 dates in Transformer
- Replies: 22
- Views: 5053
Why not create a temporary output file containing the results of each of your stage variables and run it for a couple of rows? The ICONV statement returns an integer number that equates to the number of days passed since Jan 1, 1968. So, for May 17, 1995 the number is 10000. If ICONV cannot "interna...