Search found 53125 matches

by ray.wurlod
Wed Sep 28, 2011 3:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Message Handler in Sequencer
Replies: 5
Views: 2062

Job sequences are server jobs. You can copy the generated Job Control code from a sequence and post in a regular server job and it will work in exactly the same way. Sequences are executed by the server engine (using DSD.RUN) in exactly the same way that server jobs are executed. Yes, I am sure. And...
by ray.wurlod
Wed Sep 28, 2011 3:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job aborted if run by director scheduler
Replies: 2
Views: 1080

This one is tricky to diagnose. The "?" characters suggest that you may have used non-ASCII (Chinese?) characters in a property that requires only ASCII characters. Are there any related warnings or errors in the log?
by ray.wurlod
Wed Sep 28, 2011 3:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Enterprise stage infor messages
Replies: 2
Views: 2869

Until you disable operator combination you will have no idea which stage is throwing the error.
by ray.wurlod
Wed Sep 28, 2011 3:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Terminating with exception:APT_ParseError : Parsing paramete
Replies: 10
Views: 3006

That's not what RCP does. However you can use DataStage to trace back. Right click on a downstream stage and ask DataStage to report where a column comes from. You can select an individual column to trace. Another approach might be to import the job into another project and perform a cross-project c...
by ray.wurlod
Tue Sep 27, 2011 8:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incremental Load
Replies: 0
Views: 859

Seems to me you're looking for the DateFromDaysSince() function to generate the new date. Presumably you have already worked out your strategy - a file maybe - for saving the new date so that it can be picked up in 15 days' time.
by ray.wurlod
Tue Sep 27, 2011 8:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: loop concept in Transfomer stage
Replies: 1
Views: 832

DCOUNT is a reserved word (it's the name of a function). Use a different name for the stage variable.
by ray.wurlod
Tue Sep 27, 2011 8:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Terminating with exception:APT_ParseError : Parsing paramete
Replies: 10
Views: 3006

That one is an alert only, because you have a date coming in to the stage (I assume from the name that it's a pivot stage) bit the column to which you have it mapped is VarChar(10). The message is alerting you to that fact. Use consistent data types across the stage to prevent this error. If necessa...
by ray.wurlod
Tue Sep 27, 2011 7:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Unable to Update the Status File shows Running Always
Replies: 11
Views: 3403

One from left field: is this job designed as a multi-instance job?
by ray.wurlod
Tue Sep 27, 2011 4:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Terminating with exception:APT_ParseError : Parsing paramete
Replies: 10
Views: 3006

As always you're making it hard for yourself (and us). Disable operator combination so you (and we) can discover which stage (operator) is actually throwing the error.
by ray.wurlod
Tue Sep 27, 2011 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: remove null values appended to data
Replies: 15
Views: 6510

In server jobs and BASIC Transformer stages there is the concept of a "null string", represented by the system variable @NULL.STR. It would seem that you have these in your data. Have you tried trimming Char(128) from your string? That's the DataStage internal representation of null. Other...
by ray.wurlod
Tue Sep 27, 2011 4:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cartesian Product - Join 2 Input Files
Replies: 5
Views: 6352

I don't believe it's possible to get DataStage to perform a Cartesian product with a single stage.

You might, however, perform two Left Outer Joins with transposed left and right links, and combine their outputs with a Funnel stage.
by ray.wurlod
Tue Sep 27, 2011 4:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: new line charecter in btwn double quotes in sequential file
Replies: 10
Views: 4312

Here's what I have in mind. SharedContainer +-----------------------------------+ | | | SeqFile Output | | +-----+ +----+ | | | | -----------> | | ---------> | +-----+ +----+ | | | +-----------------------------------+
by ray.wurlod
Tue Sep 27, 2011 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: commit after each row
Replies: 6
Views: 1612

Can this field be legally populated into the target?

Is any error/warning message thrown?
by ray.wurlod
Tue Sep 27, 2011 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Statisical/Six-Sigma Rules/formulas in DataStage
Replies: 3
Views: 1097

No. Ultimately DataStage is an ETL tool, not a reporting tool.
by ray.wurlod
Tue Sep 27, 2011 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: History Expiry issue
Replies: 3
Views: 1270

No, you will need a bit more complexity than that, perhaps a lookup against the target using the natural key.

Have you considered using a Slowly Changing Dimension stage?