Search found 53125 matches
- Fri Apr 06, 2007 9:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error Connecting from Client in Windows to DS Server in Unix
- Replies: 19
- Views: 6065
The ping utility tells you nothing more than that the server machine is visible on the network. In particular, it tells you nothing about software. Can you connect via telnet? If so, can you verify whether the dsrpcd process is running? ps -ef | grep dsrpcd | grep -v grep If dsrpcd is, in fact, runn...
- Fri Apr 06, 2007 7:07 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Insufficient Privileges Error
- Replies: 3
- Views: 1243
- Fri Apr 06, 2007 7:05 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Scratch Space and Resource Disk in Datastage
- Replies: 5
- Views: 10809
Operator combination is an optimization whereby multiple adjacent parallel operators are caused to execute in the same process, provided certain conditions are met. Disable it either using the APT_DISABLE_COMBINATION environment variable or setting the combination setting in individual stages' Advan...
- Fri Apr 06, 2007 7:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error Connecting from Client in Windows to DS Server in Unix
- Replies: 19
- Views: 6065
- Fri Apr 06, 2007 7:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance while loading target database table
- Replies: 30
- Views: 10134
- Fri Apr 06, 2007 2:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Read From Dataset is slow
- Replies: 6
- Views: 1472
It's almost certainly not the read from the Data Set that's slow. To prove this create a copy of the job but replace the Oracle Enterprise stage with a Copy stage or a Peek stage. Run that job to get an estimate of the true read speed of a Data Set. That means that the problem must be with upsert. T...
- Fri Apr 06, 2007 2:02 am
- Forum: IBM<sup>®</sup> DataStage TX
- Topic: Running QualityStage jobs in DataStage
- Replies: 1
- Views: 1943
- Thu Apr 05, 2007 10:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Capability to read a compressed file
- Replies: 5
- Views: 1416
UnZip 5.50 of 17 February 2002, by Info-ZIP. Maintained by C. Spieler. Send bug reports to the authors at Zip-Bugs@lists.wku.edu; see README for details. Usage: unzip [-Z] [-opts[modifiers]] file[.zip] [list] [-x xlist] [-d exdir] Default action is to extract files in list, except those in xlist, t...
- Thu Apr 05, 2007 7:44 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Oracle Upsert Error
- Replies: 5
- Views: 1219
- Thu Apr 05, 2007 7:42 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: stage types vanished
- Replies: 4
- Views: 1381
I agree that it's most unusual - this hashed file is typically only written to when new stage types are added. Usually this is when the project is being created or updated only. Has anyone created a Custom stage, a Build stage or a Wrapped stage? A glitch in index updating during the saving of same ...
- Thu Apr 05, 2007 7:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance while loading target database table
- Replies: 30
- Views: 10134
Some math, to keep you amused. 500 rows took 8 sec. 194120 rows is 388.24 times 500, so you would expect - if things scaled linearly - that it would take 8 times 388.24 seconds (which is 3105.02 seconds, or 51.76 minutes) to select 194120 rows. You're getting it in 5 minutes 47 seconds. Where's the ...
- Thu Apr 05, 2007 7:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance while loading target database table
- Replies: 30
- Views: 10134
- Thu Apr 05, 2007 7:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Lookup problem
- Replies: 10
- Views: 2211
You can not perform a range lookup to a hashed file using a Hashed File stage. The Hashed File stage can only look for exact key values (which it does via the file's hashing algorithm, which is extremely efficient). You can perform such a lookup against a hashed file using a UV stage, which accesses...
- Thu Apr 05, 2007 7:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Capability to read a compressed file
- Replies: 5
- Views: 1416
- Thu Apr 05, 2007 1:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine
- Replies: 13
- Views: 2212
Re: Routine
I have a Oracle table Date1 which contains d_date field. Now i want to use this d_date as the load date in many of my jobs. I cannot use hashfile to Store this date as i need a key to do a lookup and extract the d_date. Can anyone suggest how to do this . Thanks Sheema SELECT 'X', D_DATE FROM DATE1...