Search found 53125 matches

by ray.wurlod
Thu Nov 16, 2006 10:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: import error while importing a fixed width file.
Replies: 3
Views: 1392

All string columns are ideally of type Char (not VarChar).
Set the Format property to "fixed width" (Format tab).
Use the Display Width setting to specify the actual width of each column.
by ray.wurlod
Thu Nov 16, 2006 10:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UNLOCK JOB AND VOC FILE
Replies: 6
Views: 5391

SET-FILE and SETFILE are different commands. The "TO" is not part of the command, it is displayed as a prompt requiring further input.

Execute the DS.TOOLS menu instead, and use the unlock facilities therein. This saves you fiddling with arcane demands that can do damage.
by ray.wurlod
Thu Nov 16, 2006 10:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FILE ARCHIVE
Replies: 4
Views: 1181

Try to expand your English language specification into step-by-step points, including any checking and verification that you might want to perform. This will probably make it clearer what activities you need in your job sequence.
by ray.wurlod
Thu Nov 16, 2006 10:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenation Date and Time
Replies: 4
Views: 1269

This is a DataStage site, not an Oracle site. If the query works and generates what's needed, then as far as we're concerned it's correct.

If it used to work and doesn't now, what's changed?
by ray.wurlod
Thu Nov 16, 2006 9:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage - Multiple Keys
Replies: 1
Views: 756

You can not do the OR in a Lookup stage. You can do two separate lookups to the same source, and join the two result sets downstream.
This is more cleanly designed using two separate Lookup stages.
by ray.wurlod
Thu Nov 16, 2006 9:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SAP CONNECTIVITY
Replies: 8
Views: 2104

Welcome aboard. :D Does anyone else there know about SAP connectivity and how it's done at that particular site? There's more than one mechanism; which one you choose depends on what the SAP installation permits. It's really too long a topic to be dealt with here. Let's start with the stage types in...
by ray.wurlod
Thu Nov 16, 2006 9:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reporting error in Batch of a Shell Unix executing sql
Replies: 2
Views: 872

Welcome aboard. :D

You manage this by including appropriate logic and exit commands in your script. For example exit 0 on success, exit 1 on failure. You can even return specific codes from shell variables, for example exit $reasoncode
by ray.wurlod
Thu Nov 16, 2006 9:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Monitor
Replies: 4
Views: 1565

That really depends on what is making those log entries, whether the job monitor or something else in the actual stage. The best I can offer as the answer is a definite maybe. Why not try one and let us know? As I understand things, DataStage still generates the row counts; job monitor collects them.
by ray.wurlod
Thu Nov 16, 2006 7:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MetaData Mismatch Warning
Replies: 30
Views: 6086

Is AMT nullable in the source DB2 table?
by ray.wurlod
Thu Nov 16, 2006 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Monitor
Replies: 4
Views: 1565

The job monitor collects those performance statistics you see in Designer (unless you switch their display off). You will also not be able to report row counts in the job log. If you use MetaStage the job monitor also has the responsibility of collecting the process metadata that will be sent into t...
by ray.wurlod
Thu Nov 16, 2006 7:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem on select date fields
Replies: 3
Views: 991

I confess to being mystified. Can you please verify that the metadata (table definition) used in the job is totally correct? Even re-import it from the DCLGen to be sure.
by ray.wurlod
Thu Nov 16, 2006 7:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Replace simple px jobs by server jobs DS 7.5.2
Replies: 8
Views: 2203

Server jobs start up more quickly than parallel jobs, even parallel jobs on a single-node configuration. But I don't think this is your issue. How are you loading the rows into the target table? That is, what write rule are you following? If they are all new (insert) rows, prefer to use a bulk loader.
by ray.wurlod
Thu Nov 16, 2006 7:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File to a Sequential file
Replies: 3
Views: 830

With a simple modification to your job design that populates the hashed file (not the one that uses it as a reference lookup) the task is even easier - an extra output link to a text files, with post-processing to remove duplicates (perhaps a sort -u command from an ExecSH after-stage subroutine).
by ray.wurlod
Thu Nov 16, 2006 7:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Scheduler
Replies: 5
Views: 1413

This might sound silly, but I've seen it done. Check that the year/century is correct - for example that the job is not scheduled to run in 2106.
by ray.wurlod
Thu Nov 16, 2006 7:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML reading information about no. of records
Replies: 1
Views: 583

The easiest way is to set up counters in your job. You might use stage variables in a Transformer stage, you might use Aggregator stages with Count as the aggregation method.