Search found 53125 matches

by ray.wurlod
Mon Mar 16, 2009 2:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Debug - Aborting for one user but not another
Replies: 9
Views: 2377

I have experienced it in 8.1.
by ray.wurlod
Sun Mar 15, 2009 11:27 pm
Forum: IBM QualityStage
Topic: Customized Rule set
Replies: 7
Views: 3202

Don't the rules files have to be in a specific folder? (Don't have immediate access to QualityStage at the moment, so can't check.)
by ray.wurlod
Sun Mar 15, 2009 11:26 pm
Forum: IBM QualityStage
Topic: Customized Rule set
Replies: 7
Views: 3202

Don't the rules files have to be in a specific folder? (Don't have immediate access to QualityStage at the moment, so can't check.)
by ray.wurlod
Sun Mar 15, 2009 11:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ensuring hashed file is created when the job executes
Replies: 11
Views: 4139

IOW ?

Isn't that the noise a cat makes?
:?

Please refrain from all but the most common English abbreviations on DSXchange. Many of our readers don't have English as their first language, and it's tough enough as it is, without having to decode the mental processes behind arcane abbreviations.
by ray.wurlod
Sun Mar 15, 2009 11:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Debug - Aborting for one user but not another
Replies: 9
Views: 2377

Close the job, re-open it, re-compile with your breakpoints enabled. If you're really paranoid, close and re-open it again and you probably won't get "debugger client has disconnected" aborts.
by ray.wurlod
Sun Mar 15, 2009 11:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Runtime error 6 : Overflow
Replies: 5
Views: 2679

I'm prepared to be you restarted your client machine in the interim.

This run-time overflow has occurred in the client software (or its underlying operating system), not on the DataStage server at all.
by ray.wurlod
Sun Mar 15, 2009 11:19 pm
Forum: General
Topic: Performance differences between the DRS and native stages
Replies: 7
Views: 1729

Isn't pita a kind of bread?
:?
by ray.wurlod
Sun Mar 15, 2009 11:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert Word to Number (ABCD to 0123)
Replies: 2
Views: 1423

There's no consistent way to decode this. So why is it wanted?
For example 2541170 could decode as ZEBBHA.
by ray.wurlod
Sun Mar 15, 2009 8:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using CRC32() to detect changed data in SCD2 implementation
Replies: 9
Views: 8051

That's only part of the problem, but the other part could be resolved by including the SKs as a non-key column in your hashed file. Of course, you then have to maintain these when a Type 2 change occurs.
by ray.wurlod
Sun Mar 15, 2009 6:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using CRC32() to detect changed data in SCD2 implementation
Replies: 9
Views: 8051

... or even store the CRC32 value in the table itself.
by ray.wurlod
Sun Mar 15, 2009 5:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using CRC32() to detect changed data in SCD2 implementation
Replies: 9
Views: 8051

No. The new data MUST be the driver. One useful technique is called "bucket table". In this technique you identify all the keys in source and load these into a table in your database. You can then perform a join of this "bucket table" with the existing dimension table to retrieve...
by ray.wurlod
Sun Mar 15, 2009 2:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Universe Routine
Replies: 9
Views: 5523

"Spot my deliberate error" :wink:

argArg1 = Arg1
Counter = 0
Ans = ""
Loop
Remove Element From argArg1 Setting Delim
Counter += 1
Ans := Counter : Char(256 - Delim)
While Delim
Repeat
by ray.wurlod
Sat Mar 14, 2009 1:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Universe Routine
Replies: 9
Views: 5523

Code: Select all

argArg1 = Arg1
Counter = 0
Ans = ""
Loop
Remove Element From argArg1 Setting Delim
   Counter += 1
   Ans := Element : Char(256 - Delim)
While Delim
Repeat
by ray.wurlod
Sat Mar 14, 2009 12:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Missing Stages in Project
Replies: 7
Views: 2078

OK the first part of the question appears to be resolved, now does anyone have any creative ideas about a punishment/preventative?
by ray.wurlod
Sat Mar 14, 2009 12:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Efficient Way to remove Duplicates and store them
Replies: 5
Views: 1501

I prefer a fork join design, where one leg of the fork counts the number of rows associated with each key value - this is joined back to the original row and used to filter based on count = 1 or otherwise. Possibly easier is to generate a Key Change column in the Sort stage; duplicates have this set...