Search found 53125 matches

by ray.wurlod
Fri Apr 09, 2010 5:52 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: How to migrate a Web Service between environments
Replies: 2
Views: 1678

Moderator: please move to General forum. Welcome aboard. This is not an Information Analyzer question, as one simply does not have the capacity to publish profiling jobs as web services. I don't know the answer to your question - hopefully someone else will - but sometimes you simply do have to cons...
by ray.wurlod
Fri Apr 09, 2010 5:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Duplicate
Replies: 3
Views: 1926

You've done too much, but your answer is still functionally correct.
by ray.wurlod
Fri Apr 09, 2010 2:28 am
Forum: IBM QualityStage
Topic: UK Address Standardization
Replies: 10
Views: 5047

If it looks like a bug, and smells like a bug...
by ray.wurlod
Fri Apr 09, 2010 1:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Changing values of Environmental variables at run time
Replies: 7
Views: 2547

You can change them, but the values used by your job won't change because they're read into the job processes' memory when the job starts.

So please confirm your reason for wanting to change environment variables or parameter values once the job is running. Then maybe we can look at techniques.
by ray.wurlod
Thu Apr 08, 2010 11:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find the Job Type?
Replies: 5
Views: 2808

Code: Select all

SELECT NAME FMT '30L', CATEGORY FMT '46L' FROM DS_JOBS WHERE NAME NOT LIKE '\\%' AND JOBTYPE = '0';
by ray.wurlod
Thu Apr 08, 2010 11:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding logic
Replies: 7
Views: 2608

That's not an ETL task - it's a reporting task. Most reporting tools can perform this kind of query.
by ray.wurlod
Thu Apr 08, 2010 11:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to execute px job on personal computer?
Replies: 3
Views: 1505

You will never get parallel jobs to compile or run on version 7.5.1 on Windows.

You must get version 7.5x2 - not 7.5.2 but 7.5x2.

You will also need the DataStage fix pack for Windows XP sp2.

Both are available through your vendor/reseller.
by ray.wurlod
Thu Apr 08, 2010 7:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to execute px job on personal computer?
Replies: 3
Views: 1505

Welcome aboard. Before we can answer that in a cogent fashion, we need to know what version you have installed (exactly) and on what operating system (not just "Windows" but more specific for example Windows Server 2003). The only version 7 version of DataStage that will allow you to compi...
by ray.wurlod
Thu Apr 08, 2010 7:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer compilation error
Replies: 4
Views: 1395

You can't trim before checking for nulls, because the trim functions are intolerant of nulls (this is eased in the next version by the way, because everyone hates it). You just need to re-think the logic. You probably need a two-stage If..Then..Else construct.
by ray.wurlod
Thu Apr 08, 2010 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer compilation error
Replies: 4
Views: 1395

Nothing's "going wrong" with Trim function - but you aren't preventing null values of lnk1.C from getting to it. Functions are intolerant of null. Try this: If IsNull(lnk1.A) Then param_DefaultValue Else lnk1.A : ' - ' : lnk1.B : ' - ' : TrimLeadingTrailing(NullToValue(lnk1.C, param_Defaul...
by ray.wurlod
Thu Apr 08, 2010 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error setting up internal communications
Replies: 17
Views: 6650

It's probably worth putting the command umask 002 into the $DSHOME/dsenv script, too.
by ray.wurlod
Thu Apr 08, 2010 4:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with ABS and MOD Function in Parallel Extender Job
Replies: 17
Views: 12577

Fabs() is a server job function. It's only available in parallel jobs in the BASIC Transformer stage.
by ray.wurlod
Thu Apr 08, 2010 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Resize VOC
Replies: 13
Views: 4638

I agree. Do some discovery on how large your job logs are.
by ray.wurlod
Thu Apr 08, 2010 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Do DS_JOBS, DS_AUDIT and DS_JOBOBJECTS exist in Version 8.X?
Replies: 2
Views: 2558

And it's not necessarily DB2 - you get the choice of DB2, Oracle or (on Windows only) Microsoft SQL Server.
by ray.wurlod
Thu Apr 08, 2010 4:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple instance job finished, but don't do anything
Replies: 11
Views: 3372

Something in the job sets user status, probably a routine called from a Transformer stage. Look there.