Search found 53125 matches

by ray.wurlod
Thu Aug 25, 2016 4:11 pm
Forum: General
Topic: Datastage 87 install giving a warning
Replies: 3
Views: 1491

Are you trying to replace 8.1 with 8.7, or install them side by side?

If the former, delete MKS Toolkit and allow the install program to install the correct version.

Indeed, you may need to do this in the latter case too, and hope that 8.1 can work properly with the newer version of MKS Toolkit.
by ray.wurlod
Thu Aug 25, 2016 4:08 pm
Forum:
Topic: Can not delete an empty host in IMAM
Replies: 4
Views: 3627

Is there an alias for this host somewhere in your repository?
by ray.wurlod
Thu Aug 25, 2016 4:06 pm
Forum:
Topic: IGC Glossary - Ability to view/edit multiple terms?
Replies: 4
Views: 3594

You can export in XML format, edit the XML, and import (overwriting).
by ray.wurlod
Thu Aug 25, 2016 4:04 pm
Forum: IBM QualityStage
Topic: QS webservice jobs compilation issue
Replies: 7
Views: 8535

Do clear the log. It's just good practice to do so. However, the hashed file that has become corrupted is RT_STATUS1, not RT_LOG1. If you have administrative tools enabled in Director client, you can clear the job's status information from there. If you do not have these tools enabled, then execute ...
by ray.wurlod
Tue Aug 23, 2016 12:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error in Job
Replies: 5
Views: 2602

Welcome aboard.

Somewhere, on (at least) one of your links, there is a column defined as VarChar, with Unicode set, without a value for its Precision (maximum length). You have to find this.

You might try setting the environment variable OSH_SHOW_SCHEMAS as part of your investigation.
by ray.wurlod
Mon Aug 22, 2016 11:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic arrays/or pivot
Replies: 4
Views: 1706

You might also consider reducing the 50+ non-key columns to one using a Column Output stage, which generates a delimited string. You should then be easily able to compare those delimited strings to fulfil your requirement.
by ray.wurlod
Mon Aug 22, 2016 11:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic arrays/or pivot
Replies: 4
Views: 1706

Where do you get the column names (name, address) from in your design?
by ray.wurlod
Mon Aug 22, 2016 11:24 pm
Forum:
Topic: IGC Glossary - Ability to view/edit multiple terms?
Replies: 4
Views: 3594

In addition to the responses Vincent posted, you can also form a list for multiple edit by using the Drafts folder (one of the three folders in the governance area, the others being Pending Approval and Approved). I sometimes find this the easiest place to effect bulk edits.
by ray.wurlod
Mon Aug 22, 2016 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic arrays/or pivot
Replies: 4
Views: 1706

Dynamic array structures are natively supported in server jobs. I'd recommend looking at using an approach based on server jobs.
by ray.wurlod
Sun Aug 21, 2016 6:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove DataSets
Replies: 17
Views: 6401

It's not required, but it IS recommended. It's a safety measure, to make sure that no job could possibly be attempting to write to a Data Set while Data Sets are being deleted.
by ray.wurlod
Sun Aug 21, 2016 6:26 pm
Forum: General
Topic: Jobs compile but will not run
Replies: 14
Views: 2507

If you're getting DSJE_BADPROJECT in the dsjob command, it is either that you are not specifying the project name correctly (it is case sensitive), or (less likely, since you can compile jobs) your project or engine installation has been damaged.
by ray.wurlod
Sun Aug 21, 2016 6:22 pm
Forum: General
Topic: Error return code for DsImport
Replies: 2
Views: 948

All DataStage command line executables are well-formed, in that they generate an exit status of 0 if successful, and a non-zero exit status otherwise.

The exit status can be captured through the shell variable $? if on UNIX or %ERRORLEVEL% if on Windows.
by ray.wurlod
Fri Aug 19, 2016 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File Split logic ..
Replies: 8
Views: 2994

Why are you using different delimiter characters in the DCount() and Field() functions?
by ray.wurlod
Fri Aug 19, 2016 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File read limit
Replies: 10
Views: 4011

Have you tried using multiple readers?
by ray.wurlod
Fri Aug 19, 2016 3:50 pm
Forum: General
Topic: Re-order metadata in column definition
Replies: 6
Views: 2196

The functionality is there, including in version 11.5. In the Columns grid (in the bottom right quadrant of the Transformer stage, or in the downstream Sequential File stage), select the Column name and then use your right mouse button to drag a column (up or down) to its new position. You can also ...