Search found 53125 matches

by ray.wurlod
Wed Feb 03, 2016 3:45 pm
Forum: General
Topic: dsjobreport argument
Replies: 4
Views: 2756

Even though it's Windows, you might also try using forward slashes.

Would you mind informing us how you resolved this?
by ray.wurlod
Wed Feb 03, 2016 3:42 pm
Forum: IBM QualityStage
Topic: USNAME clarification
Replies: 20
Views: 12403

Maybe also an input text override to pick up the RICAHRD token and replace it with RICHARD as its standardized form?
by ray.wurlod
Wed Feb 03, 2016 3:41 pm
Forum: IBM QualityStage
Topic: QualityStage issue - unhandled address
Replies: 7
Views: 4944

Good, that's one possibility eliminated. Now check your 9.x rule set as per my second question.
by ray.wurlod
Tue Feb 02, 2016 4:39 pm
Forum: General
Topic: Stage descriptions lose CR when jobs are reopened
Replies: 3
Views: 1302

I've never seen that, but I've not played much with version 9 (only 8 and 11 of late).
by ray.wurlod
Tue Feb 02, 2016 4:25 pm
Forum: General
Topic: Replace Functions in a Sequencer
Replies: 8
Views: 1834

The full version, to replace every occurrence, would have the form

Code: Select all

Ereplace(Ereplace(field_name,"&P","Policy",-1,0),"&B","Benefit",-1,0) 
by ray.wurlod
Tue Feb 02, 2016 4:24 pm
Forum: General
Topic: Replace Functions in a Sequencer
Replies: 8
Views: 1834

The full version, to replace every occurrence, would have the form

Code: Select all

Ereplace(Ereplace(field_name,"&P","Policy",-1,0),"&B","Benefit",-1,0) 
by ray.wurlod
Tue Feb 02, 2016 4:22 pm
Forum: IBM QualityStage
Topic: QualityStage issue - unhandled address
Replies: 7
Views: 4944

Did you have any overrides in your v8.1 rule set?
You also need to find out why ROAD was classed as V in your v9.1 rule set. Again, do you have any overrides, particularly classification overrides?
by ray.wurlod
Mon Feb 01, 2016 11:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Stored Procedure on failure
Replies: 2
Views: 1742

It's probably sufficient to select "Procedure status to link" on the output link from the Stored Procedure stage. ProcCode and ProcMess are ordinarily automatically mapped to the output link when you do this, though you can remove them, for example if you were only interested in ProcCode.
by ray.wurlod
Mon Feb 01, 2016 11:22 pm
Forum: General
Topic: Replace Functions in a Sequencer
Replies: 8
Views: 1834

It's probably the missing quotes, as Craig noted. If not, please also provide the error message that gets generated.
by ray.wurlod
Mon Feb 01, 2016 11:20 pm
Forum: IBM QualityStage
Topic: Data duplicate result set from 2 source matching
Replies: 3
Views: 3862

You could try switching the order of the input links to the stage.
by ray.wurlod
Mon Feb 01, 2016 4:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help Needed in calling DB2 Stored Procedure
Replies: 8
Views: 3180

Typically you map input columns to the stage onto IN and INOUT parameters, and output columns from the stage onto INOUT and OUT parameters.
by ray.wurlod
Mon Feb 01, 2016 4:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML OUTPUT STAGE
Replies: 4
Views: 1786

Actually the documentation on the XML Output stage is fairly comprehensive.
by ray.wurlod
Sun Jan 31, 2016 11:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Simple Example of executing a SQL server stored procedure
Replies: 8
Views: 8264

Just out of curiosity, why did this particular task have to be done with a stored procedure? There's a perfectly adequate pair of functions in DataStage for obtaining the weekday of the current date. Also review the "%eeee" and "%eee" format strings.
by ray.wurlod
Sun Jan 31, 2016 8:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: concatenate zeros to fields
Replies: 2
Views: 1329

Code: Select all

Right(Str("0",8):Field(InLink.TheString,".",1,1),8)
by ray.wurlod
Thu Jan 28, 2016 4:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: #NLS# is not a valid codepage
Replies: 3
Views: 2383

How did you insert the job parameter reference into the stage (manually, or using the Insert Job Parameter tool)?