Search found 53125 matches
- Mon Apr 12, 2004 8:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Parallel Extender Version 6 Debugger
- Replies: 1
- Views: 657
- Mon Apr 12, 2004 3:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ERROR during Installation of DS SERVER 7.1 on SOLARIS 2.8
- Replies: 5
- Views: 1858
How much disk space do you really have? Solaris is notorious for having a small /tmp file system and for mounting swap there. Choose a non-default temp area, with at least the recommended amount of free space there in addition to the disk space needed to install the actual product. (I don't know wha...
- Mon Apr 12, 2004 3:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Calling a DataStage Job from a Routine.
- Replies: 2
- Views: 1227
- Mon Apr 12, 2004 3:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help needed to kill a "rogue" server job
- Replies: 5
- Views: 1581
What you see in the Director is not the actual status of the job. Rather, it's the most recent entry that the job has been able to write to its status file, which is what Director reads. If the job has aborted suddenly (or been killed), then it never gets the opportunity to update its status records...
- Mon Apr 12, 2004 3:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: I got the Error when I was trying to load data to Oracle
- Replies: 5
- Views: 2924
Show us what's in the Oracle log (ora.61034.798698.0.log). It looks like Oracle has had a problem with what you've asked sqlldr to do. That is, DataStage has successfully generated the data file(s) and control file, but Oracle has not liked some or all of the rows in the data file. These rows will b...
- Mon Apr 12, 2004 3:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: unable to generate code
- Replies: 1
- Views: 1902
- Mon Apr 12, 2004 3:21 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage Parallel Extender Openings
- Replies: 1
- Views: 2219
- Mon Apr 12, 2004 3:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Hardware configuration for DataStage 7.x Parallel extender
- Replies: 3
- Views: 2919
CPU speed doesn't really matter, though faster processors will get through the same number of cycles in a shorter period. Your question is currently in the "how long is a piece of string?" category. More, slightly slower CPUs can be better than fewer, slightly faster CPUs in a parallel processing en...
- Sun Apr 11, 2004 2:07 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Tablet PC
- Replies: 5
- Views: 1264
- Sat Apr 10, 2004 5:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Tablet PC
- Replies: 5
- Views: 1264
- Sat Apr 10, 2004 5:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Connect by clause of Oracle in DataStage
- Replies: 5
- Views: 2122
The UniVerse query language RetrieVe has a method of performing this kind of recursive query, by using a keyword called WITHIN. I am fairly sure that it is not possible (except to a finite number of levels) using SQL. Essentially you need a tree-traversing routine which continues arbitrarily until t...
- Thu Apr 08, 2004 8:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: QS Plugin Error
- Replies: 2
- Views: 735
- Thu Apr 08, 2004 5:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problems setting large record size in hash files
- Replies: 6
- Views: 2817
There is no relationship between LARGE.RECORD and GROUP.SIZE. It looks like you've encountered a bug in CREATE.FILE. Here are some alternatives. Having created the file, change LARGE.RECORD with RESIZE. RESIZE filename * * * LARGE.RECORD 10000 (a multiple of 8 bytes is preferred) Having created the ...
- Thu Apr 08, 2004 5:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: LIST UV.ACCOUNT
- Replies: 11
- Views: 4792
Prefer SQL to RetrieVe. By default, SQL doesn't generate headers, initial form feeds, and the like. SELECT UNIQUE.PATH FMT '256L' FROM UV.ACCOUNT WHERE @ID = 'DGI'; To execute this from a UNIX shell you must be in a directory in which a pointer to UV.ACCOUNT exists. This happens when DS.TOOLS is use...
- Thu Apr 08, 2004 5:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to handle multiple Input as well as output @runtime
- Replies: 9
- Views: 2791
Ask yourself this question. "Could I automate the generation of 200 sqlldr control scripts?" If the answer is yes, then the DataStage answer is also yes. If the answer is no, then the DataStage answer could still be yes, but not without adding some specialist knowledge about how table and column def...