Search found 4992 matches
- Mon Mar 29, 2004 3:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Invalid Column Name
- Replies: 7
- Views: 1931
- Mon Mar 29, 2004 2:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Invalid Column Name
- Replies: 7
- Views: 1931
- Mon Mar 29, 2004 12:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Invalid Column Name
- Replies: 7
- Views: 1931
- Mon Mar 29, 2004 12:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Invalid Column Name
- Replies: 7
- Views: 1931
- Thu Mar 25, 2004 10:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Calling a datastage job from command line
- Replies: 2
- Views: 1385
- Wed Mar 24, 2004 10:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: passing sysdate from sqlplus into dsjob -run paramtere
- Replies: 1
- Views: 2295
Assuming sysdate is returning a value of YYYY-MM-DD HH24:MI:SS, you have spaces, colons, and dashes that will not work. You must surround the entire string with double quotes. However, dsjob is sometimes flakey and will strip off the quotes. I have found that you have to use "eval" to execute dsjob ...
- Wed Mar 24, 2004 6:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage on a Sun Cluster
- Replies: 1
- Views: 480
You must have discrete DS installations in order to have both domain installations running simultaneously. You cannot have two "engines" running jobs against the same underlying files. You can install DS on any domain in an E-series server, and each installation should have its own projects in its o...
- Tue Mar 23, 2004 1:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle Unix Platform
- Replies: 2
- Views: 700
- Tue Mar 23, 2004 6:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: did you know? You can create a unique index in parallel
- Replies: 29
- Views: 19928
I said I'd use a smart key for the surrogate, but that does not eliminate the need for a TIME subject area of tables. You still have to do a join to the appropriate table (D_DAY, D_HOUR, etc) to get to the attributes for aggregation/reporting purposes. I only use a smart key so that a date column is...
- Mon Mar 22, 2004 12:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Upgrade problems: 6.0 to 7.1
- Replies: 1
- Views: 885
- Mon Mar 22, 2004 12:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Craig hits 1000
- Replies: 7
- Views: 1764
- Mon Mar 22, 2004 8:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Failed due to strange reason
- Replies: 7
- Views: 2762
- Mon Mar 22, 2004 7:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem in loading into Oracle
- Replies: 8
- Views: 3026
The ORABULK stage is a wrapper to sqlldr. If you understand what sqlldr is, then you should know that it is not a data extractor, it is a data loader. Therefore, it has no ability to spool data, it is what is it is. Thus, you should not put an output link to stream data from that stage, as it not a ...
- Sun Mar 21, 2004 8:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance numbers for 4CPU 12K development box
- Replies: 3
- Views: 1770
I can only point out that apples compared to apples should be identical. Imagine you have an empty non-partitioned table with locally managed indexes. You also have a 67 million row sequential file to load. If you use sqlldr with direct path option to load the file, it will read the file natively an...
- Sun Mar 21, 2004 8:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: did you know? You can create a unique index in parallel
- Replies: 29
- Views: 19928
The Time dimensions are the only family of tables where I would use a smart surrogate key. Simply take the dashes out of YYYY-MM-DD and you end up with a number. Take out the dashes, spaces, and colons from YYYY-MM-DD HH24:MI:SS and you end up with a 14 digit number. This is grey area, but I would a...