Search found 53125 matches

by ray.wurlod
Thu Sep 11, 2008 5:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unisys DMS II
Replies: 2
Views: 1259

OpenLink is another provider of ODBC drivers. There may even be one available from Unisys.
by ray.wurlod
Thu Sep 11, 2008 5:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Format
Replies: 1
Views: 753

If your data types are genuinely date or timestamp, then the format is irrelevant; internally they are stored in binary format. If the data type is string of some kind, then there are conversion functions such as TimestampToString() and StringToTimestamp() that you can use with appropriate format st...
by ray.wurlod
Thu Sep 11, 2008 5:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non-pipe (or non-virtual data set) with .v in its name
Replies: 3
Views: 1498

Welcome aboard.

DSXchange has a Search facility that can often yield the required answer faster than posting a question that has been answered in the past.
by ray.wurlod
Thu Sep 11, 2008 5:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup in a Grid environment
Replies: 6
Views: 1898

What happens if you use Entire as the partitioning algorithm on the reference input link? I'm asking as a diagnostic question, not necessarily with a view to recommending this as the solution.
by ray.wurlod
Thu Sep 11, 2008 5:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rejects from a lookup stage
Replies: 3
Views: 1274

There was no such bug. The problem would appear to have been between the keyboard and that job's developer's chair.
by ray.wurlod
Thu Sep 11, 2008 5:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer warning
Replies: 4
Views: 1253

This is a known bug in DataStage, if you explicity specify a partition in Transformer Stage it throws this Warning message. You can add this warning to an Existing Message handler or new Message handler in your project and demote it to Informational. It's not a bug, as I've explained before. It's a...
by ray.wurlod
Thu Sep 11, 2008 5:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequence compilation error
Replies: 1
Views: 789

Can you open the file RT_BP985/JOB.150667382.DT.1485838458 and post a few lines either side of line #49 ?
by ray.wurlod
Thu Sep 11, 2008 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extra iteration in Loop Activity
Replies: 13
Views: 2656

Assuming that the real names have more than one character:

Code: Select all

Len(StartLoop_BusUnits_List.$Counter) <= 1 And IsNotNull(StartLoop_BusUnits_List.$Counter )
by ray.wurlod
Thu Sep 11, 2008 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sun C++ routine Orchestrate Error Message
Replies: 6
Views: 2446

Care to share the URL? A search at ibm.com didn't find it.
by ray.wurlod
Thu Sep 11, 2008 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to pass variable $APT_CONFIG_FILE from script
Replies: 13
Views: 15790

You can also "escape" the dollar sign. \$APT_CONFIG_FILE

This and "hard quotes" are standard shell scripting techniques. Perhaps some learning is required.
by ray.wurlod
Thu Sep 11, 2008 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Monitor
Replies: 8
Views: 2820

jobmon_ident is simply the identifier used by the job monitor - it is not the job monitor itself. If the stage is not there, it is not possible to monitor its output. You need to adopt a new mindset. What gets executed is not necessarily exactly what you designed, though it is functionally equivalent.
by ray.wurlod
Thu Sep 11, 2008 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: BW Load - Critical Failure, no job name for PULL job
Replies: 6
Views: 3249

What's different at the times when it works and the times when it fails? What else is happening in SAP then? The message "waiting for BW to indicate..." suggests that the problem is on that side rather than in DataStage.
by ray.wurlod
Thu Sep 11, 2008 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compare the rows in data stage?
Replies: 7
Views: 7202

RowSplitter and RowMerger stages are available at least back to version 7.5, maybe even to 7.0.
by ray.wurlod
Thu Sep 11, 2008 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rules Based DataStage Jobs
Replies: 3
Views: 5575

You need a "rules dispatcher" routine and individual routines that check each rule, returning a true/false value. Use "indirect call" (see DataStage BASIC manual) to achieve late binding in the rules dispatcher; your job passes the rule name "Rule42" and the rule routine has a name that is, or inclu...
by ray.wurlod
Thu Sep 11, 2008 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table Type returned by Stored Procedure in DS Job
Replies: 5
Views: 1772

You can call a stored procedure that returns a record set (if, indeed, this is what you're talking about) using a connection stage, such as an ODBC stage.