Search found 4992 matches
- Tue Dec 20, 2005 1:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Performance for simple server job ?
- Replies: 6
- Views: 1337
Too many variables. As the job is busy working on transforming rows, the database sees that it's attention is not 100% needed, and you loose momentum. Constant roundtrips means you are never dedicated to one task at a time. You'd probably find that spooling to a file gives outstanding performance, a...
- Tue Dec 20, 2005 10:52 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job recovery
- Replies: 16
- Views: 4573
Since job design information is scattered across different rows (records), the concept of recovering the repository to a point in time is futile given its nature. A file system level backup is unaware of the transient state of the data in the file structures, so a backup could catch an instantaneous...
- Mon Dec 19, 2005 8:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: date conversion
- Replies: 1
- Views: 678
- Mon Dec 19, 2005 3:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: installation error in home pc
- Replies: 5
- Views: 1064
- Mon Dec 19, 2005 9:32 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Advantage of Datastage over Informatica
- Replies: 13
- Views: 10225
- Mon Dec 19, 2005 9:01 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Advantage of Datastage over Informatica
- Replies: 13
- Views: 10225
- Mon Dec 19, 2005 8:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to create a dynamic lookup in Datastage
- Replies: 1
- Views: 1151
Can it be done, yes. Is it worth the effort, probably not. A realtime connection from the database either needs DS RTI, or you're going to need to embed triggers in the database to feed updates to either a queue or a queue table and use microbatches to continuously query the table and feed to the ha...
- Mon Dec 19, 2005 8:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to use oracle sequence in datastage job
- Replies: 1
- Views: 818
Options: 1. Write a sqlplus script to query the table and get the single available next value. Use job control to feed that as a parameter to a transformation job. 2. Write a sqlplus script to query the table and get the single available next value. Use a DSExecSH call at stage variable initializati...
- Sat Dec 17, 2005 10:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: installation error in home pc
- Replies: 5
- Views: 1064
- Fri Dec 16, 2005 1:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Mass change of user id and password
- Replies: 7
- Views: 2662
- Fri Dec 16, 2005 12:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Subtraction of dates.
- Replies: 1
- Views: 690
Okay, you're in the wrong forum again. This is the FAQ discussion forum. If you have Server questions, please post them in the Server forum. To answer your question, subtracting dates gives an answer in the grain of the question, so if you're subtracting dates you will get either DAYS or HOURS or SE...
- Fri Dec 16, 2005 12:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Date Conversion
- Replies: 11
- Views: 4839
Welcome aboard. Since you're posting a new message for your own separate issue, please start a new message thread. That will force you to enter all of the relevant information, such as your version of DataStage, etc. You're asking a Server question in the Parallel forum, so please repost there. Than...
- Fri Dec 16, 2005 11:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to run a job in multiple instances
- Replies: 17
- Views: 5439
- Fri Dec 16, 2005 11:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Project Moved, but not running
- Replies: 11
- Views: 2540
- Fri Dec 16, 2005 11:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reg Deletion of Row in Target
- Replies: 6
- Views: 879
1. Physical deletes do not reclaim space, you'll still have gaps where the rows "used" to be. A column that indicates the row is "voided" is the preferable architectural solution. Rather than delete, you could update this indicator column. By excluding rows that have this set, you avoid all of the n...