Search found 53125 matches

by ray.wurlod
Fri Jul 06, 2007 9:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when checking composite operator
Replies: 2
Views: 3817

Are you 100% certain that you have precision (length) and scale in the correct columns? Can you post the record schema that you are using? DataStage seems to believe you are using precision 2, scale 15.
by ray.wurlod
Fri Jul 06, 2007 9:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calculating Factorial in DS Routine returning junk values
Replies: 9
Views: 3251

Why are you replicating rumu's work?
by ray.wurlod
Fri Jul 06, 2007 9:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How I can measure the zero rows in sequential file ?
Replies: 6
Views: 1365

WHY can't you count the number of rows in an empty file? You can count the number of rows in an empty table. There's nothing different.
by ray.wurlod
Fri Jul 06, 2007 9:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restartability of the jobs in Server sequencer
Replies: 7
Views: 3197

The other way, of course, is to code it yourself in a Job Control routine. This is necessary if you're running a version earlier than 5 (where job sequences were introduced). If you're not, why re-invent the wheel?
by ray.wurlod
Fri Jul 06, 2007 9:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencers in server jobs
Replies: 4
Views: 1125

Hash jobs should only be run in Amsterdam, where that kind of thing is legal.
by ray.wurlod
Fri Jul 06, 2007 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine returning weired value for calculating factorial
Replies: 16
Views: 4497

The code is largely irrelevant. DataStage arithmetic (other than string math) will not handle numbers the size of 100!, much less 800! How many digits are there in 800! rumu? This is not a DataStage limitation; really any programming language, using standard data types, would have the same issue. An...
by ray.wurlod
Fri Jul 06, 2007 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage
Replies: 6
Views: 1261

Etiquette Note
When marking a topic as Resolved, we make a post indicating HOW it was resolved.
This assists any future searchers trying to resolve the same problem.
by ray.wurlod
Fri Jul 06, 2007 9:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating 64 bit hash file
Replies: 23
Views: 5341

OF COURSE it takes a long time. It has to process 4GB of data!
by ray.wurlod
Fri Jul 06, 2007 9:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is it possible to acess Oracle in Unix from DS in Windows
Replies: 4
Views: 901

Do you really have DataStage version 8.0 on Windows-NT, sachin1 ?

Can you please explain how you installed the same? I find that I am unable even to install version 7.5 on Windows-NT.
by ray.wurlod
Fri Jul 06, 2007 9:28 am
Forum: IBM QualityStage
Topic: Standardization of records with CJK characters
Replies: 1
Views: 1275

The same way you do with any character set. All the relevant DataStage NLS maps (for example GB2312 for Chinese, Shift-JIS for Japanese) include the CJK characters. You will probably need to create your own classification tables and, perhaps, Pattern Action Language scripts. These are text files - y...
by ray.wurlod
Thu Jul 05, 2007 6:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToDecimal function - producing warnings
Replies: 6
Views: 2588

Check the data types, in particular the string length (or max length) and the decimal precision and scale. Are these the same in both environments?
by ray.wurlod
Thu Jul 05, 2007 6:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Redistributing DataStage Development Kit Applications
Replies: 5
Views: 2362

Not necessarily. For example it might be vmdsapiJPN.dll if you're redistributing in Japan.
by ray.wurlod
Thu Jul 05, 2007 4:35 pm
Forum: General
Topic: Probelm regarding Jobsequencer.
Replies: 9
Views: 2855

What, just cat? Not cat filename perhaps?

Maybe you need DIGITS(CommandActivity.$CommandOutput) and/or to strip field marks from the command output.
by ray.wurlod
Thu Jul 05, 2007 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TRIM(varchar(50)) not working
Replies: 15
Views: 9287

The point is that it doesn't matter - in a constraint expression - whether anything is removed - the result does not propagate. The expression will return True if there is any non-space character in the string, and False otherwise.
by ray.wurlod
Thu Jul 05, 2007 1:40 pm
Forum: General
Topic: regarding subroutine in parallel jobs
Replies: 7
Views: 2429

Before/after subroutines in parallel jobs are exactly the same as in server jobs. They are written in DataStage BASIC.

Enrolling in a Programming with DataStage BASIC class might be beneficial.