Search found 42189 matches
- Mon Jan 15, 2007 7:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Clear tables
- Replies: 7
- Views: 1702
Yes, 'clear' is a transactional delete of all rows in the table. You don't actually need to read an empty table, any method to send zero rows to the stage will work. For example, starting from a Transformer stage with the constraint set to @FALSE works great. All you need is a bogus stage variable t...
- Mon Jan 15, 2007 7:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance problem using lookup
- Replies: 23
- Views: 4679
Writing to a hashed file could slow a job over time, reading from one won't. I'm sure this is just another manifestation of 'back pressure' as Ken calls it. In this case, probably from holding a large number of rollback segments over the course of the load. First suggestion for this job design would...
- Mon Jan 15, 2007 12:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting total numb of rows processed
- Replies: 8
- Views: 3196
- Mon Jan 15, 2007 12:10 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: conversion from string to timestamp
- Replies: 15
- Views: 4090
- Mon Jan 15, 2007 12:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage job scheduling problem
- Replies: 5
- Views: 2338
- Mon Jan 15, 2007 12:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance problem using lookup
- Replies: 23
- Views: 4679
I doubt there is anything wrong with 'OCI' but how you are using it. The preferred way to load large numbers of records is through a bulk loader. If all you are doing is inserts, why not give that a shot? However, you never answered the question posed as to what your update action is, did you? Besid...
- Sun Jan 14, 2007 11:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: New EtlStats soon
- Replies: 34
- Views: 13529
- Sun Jan 14, 2007 11:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to get the fraction of seconds in the time hh:mm:ss-sss
- Replies: 12
- Views: 4352
Substring comes to mind. Also Field (unless that's not supported in a PX job?):
Code: Select all
Field(YourDate,".",2,1)- Sun Jan 14, 2007 11:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage job scheduling problem
- Replies: 5
- Views: 2338
Actually, you can but it's not elegant. Do one 'Next Saturday' with the proper parameters and then after it runs, remember to schedule in the next one. Lather, rinse, repeat. Either that or say (this month) the 'Next 6th' then 'Next 13th' then 'Next 20th' (etc) and repeat only once a month. Better b...
- Sun Jan 14, 2007 3:57 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ODBC Enterprise Stage Configuration
- Replies: 5
- Views: 2276
- Sun Jan 14, 2007 3:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage parrallel with intel or amd
- Replies: 19
- Views: 6214
- Sun Jan 14, 2007 10:34 am
- Forum: General
- Topic: XML Input & OutPut Stages
- Replies: 4
- Views: 1992
- Sun Jan 14, 2007 10:31 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ODBC Enterprise Stage Configuration
- Replies: 5
- Views: 2276
- Sun Jan 14, 2007 9:32 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to call sqlservers stored proc?
- Replies: 4
- Views: 1811
Interesting... I thought they meant the ODBC stage did not support the capture of returned result sets from a stored proc. I've never had a reason to look into this as it's not something I generally need to do or do for that matter. However, in reading the online Help it does say the ODBC stage supp...
- Sun Jan 14, 2007 9:20 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage parrallel with intel or amd
- Replies: 19
- Views: 6214
Dual core will require two licenses - even hyper-threaded CPUs will. And just as an aside, now that we've gone crashing thru the Topic Barrier - Narsi, that cnet article is over a year old and the CPU wars flip-flop 'winning' sides quite a bit. Intel's new 'Core Duo' chips are the latest King of the...