Search found 4992 matches

by kcbland
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...
by kcbland
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...
by kcbland
Mon Dec 19, 2005 8:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date conversion
Replies: 1
Views: 678

CHANGE(OCONV(ICONV(yourdate, "D"), "D-YMD[4,2,2]"),"-", "")
by kcbland
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

Do not thank us for assisting your illegal activities, we simply pointed out that DS is supported on Windoze utilizing the NTFS filesystem, which is the default for Windoze XP Professional.
by kcbland
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

koolnitz wrote:I wish DataStage had DEBUGGER, as we have this feature inbuilt in Informatica..


Server has an exquisite integrated Debugger that has been there from the beginning. Be sure which flavour of the tool you're addressing.
by kcbland
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

Please differentiate Server, PX, RTI, etc and their versions.

The war stories for each is vastly different, as well as their successes.
by kcbland
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...
by kcbland
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...
by kcbland
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

Well, apart from declaring to the world you're installing an illegal copy of the Server engine on your home PC, the only other error you're encountering is that you have to be running Windows XP Professional. It sounds like you're not.
by kcbland
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

Changing the hardcoded values in a Sequencer job activity stage will not change the hardcoded values defaulted in the controlled job.
by kcbland
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...
by kcbland
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...
by kcbland
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

Or the RND (expression) should give you a unique number everytime. Have you tried it? Are you sure 100% of the time two simultaneous processes won't generate the same random number? What will prevent that? The easiest solution is to use the process ID. Two job control processes will be exec...
by kcbland
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

What's in the Batch or Sequencer job logs, is anything running? Can you run a single job and see if it works? We need a lot more information. Does anything work?
by kcbland
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...