Search found 4992 matches
- Tue Jun 15, 2004 12:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Get Column Names from a link/stage using DS Basic
- Replies: 3
- Views: 879
- Tue Jun 15, 2004 11:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Abort
- Replies: 8
- Views: 1764
- Tue Jun 15, 2004 10:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Type 1
- Replies: 4
- Views: 857
You're going to end up with two rows. How are you identying the existing row if the SSN is different in the source? If you have an alternate key, then usage of the SSN as a pseud-surrogate key is a big mistake. If you have a natural key that is unchangeable, then I suggest you simply use that to ass...
- Tue Jun 15, 2004 10:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Abort
- Replies: 8
- Views: 1764
- Tue Jun 15, 2004 10:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Response time
- Replies: 10
- Views: 3204
Just remember, it's not how long it takes to get the first row in a query, but how long it takes to get the last row. You need to run this query and spool the entire results to get the full appreciation of its runtime. You will need to tune your 3 table join. Ogmios has given you a headstart, and ye...
- Tue Jun 15, 2004 8:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to run Manager after 5.2 to 7.0 conversion
- Replies: 17
- Views: 4525
- Tue Jun 15, 2004 7:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Response time
- Replies: 10
- Views: 3204
Are you selecting or loading? If you're selecting, what kind of query are you doing, is it a table dump or a complex join? Are there a lot of bytes of data to be returned? 1000 columns will spool at a different rate than 10 columns because the measurement of performance is not row based but chars/se...
- Tue Jun 15, 2004 7:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Any Ascential Certification ??
- Replies: 14
- Views: 4640
Let's cut to the chase: If Ascential actively "certified" people outside their organization, that would be an admission that there are qualified people other than those within their organization. Now, if your responsibility is to keep your resources billing at the highest value possible, would you l...
- Mon Jun 14, 2004 12:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to run Manager after 5.2 to 7.0 conversion
- Replies: 17
- Views: 4525
- Mon Jun 14, 2004 11:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to run Manager after 5.2 to 7.0 conversion
- Replies: 17
- Views: 4525
- Mon Jun 14, 2004 10:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Any Ascential Certification ??
- Replies: 14
- Views: 4640
How do you test for wisdom? I read somewhere, probably on Ascential's site, that certification is being offered by Ascential. If I remember correctly, you have to petition Ascential for recognition and have certain qualifications, namely successfully deployed an Ascential based solution as well as c...
- Mon Jun 14, 2004 8:34 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Delete rows in table Oracle
- Replies: 9
- Views: 2031
- Sun Jun 13, 2004 12:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Info
- Replies: 6
- Views: 2666
You can write a routine to be called in the after-job routine or in a controlling job. The appropriate API's (DS*) are in your DS BASIC manual. The steps are to attach to a job, get its stage list, loop thru the stage list getting the link list and for each link the row count. You'll have to learn a...
- Sat Jun 12, 2004 1:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Appending data to the same Sequential file
- Replies: 2
- Views: 1100
You cannot have multiple processes writing to the same sequential file, period. There's nothing that can be done about this because it's a block writing issue on all operating systems. You have a few choices: if all streams are in one job use a link collector; if separate jobs use a hash file to col...
- Wed Jun 09, 2004 7:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: date is an integer
- Replies: 10
- Views: 2998
Re: doesn't work
Hi Ken, I tried your way, it doesn't work either. Here is the error message: Attempt to convert String value "2004-06-09" to Date type unsuccessful The Oracle stage adds to_Date(columnname, 'YYYY-MM-DD') to your column in the auto-generated SQL. If you're using auto-generated SQL, then make sure yo...