Search found 53125 matches

by ray.wurlod
Fri May 19, 2006 2:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File gets currupt if edited in vi.
Replies: 4
Views: 1362

Umm... don't use vi ?

Examine the file with a hex-capable editor to determine what the line terminator character(s) (if any) are.

What precisely do you mean by "corrupted"? That is, what error do you get? What raw record is sent to the reject link?
by ray.wurlod
Fri May 19, 2006 2:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning message when using Aggregator for thefield Dec(15,3)
Replies: 3
Views: 1549

Declare the output column to have data type dfloat.
by ray.wurlod
Fri May 19, 2006 12:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No of warning in the current job run
Replies: 2
Views: 995

Limit the report to those events whose timestamp is later than the timestamp of the "job started" event for the current job.
by ray.wurlod
Fri May 19, 2006 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort Stage
Replies: 6
Views: 1713

Welcome aboard. :D

These are fairly well described in the Sort stage chapter in the Parallel Job Developer's Guide as well as in the on-line help for the stage. Have you looked at either of these?

Please post the results of your research. This is a sharing site.
by ray.wurlod
Thu May 18, 2006 9:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IMPORT&EXPORT ERROR
Replies: 9
Views: 3820

There may be some corruption in DS_JOBOBJECTS or DS_JOBS, or they may need to be re-indexed. Because you can count DS_JOBOBJECTS I will assume for now that that hashed file is not corrupted. Can you count DS_JOBS? At a time when no-one is using DataStage, login with administrator privileges and exec...
by ray.wurlod
Thu May 18, 2006 8:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data with Embedded Carriage Returns
Replies: 13
Views: 4121

Have you considered using a Complex Flat File stage, which has the built-in capacity for dealing with multiple record formats?

Or pre-processing your file, adding sufficient delimiter characters so that every record format has the same number of columns?
by ray.wurlod
Thu May 18, 2006 8:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fixed Width file in UNIX
Replies: 11
Views: 2558

Not a DataStage problem. 8)
by ray.wurlod
Thu May 18, 2006 6:40 pm
Forum: Site/Forum
Topic: Premium Membership
Replies: 13
Views: 6602

Premium Membership

Does the new member sign-up process include information about, and the ability to sign up for, premium membership?
by ray.wurlod
Thu May 18, 2006 6:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic number of files output from a table?
Replies: 1
Views: 696

Welcome aboard. :D A CSV can have as many lines (rows) as you like - the limitation is in some of the tools that use it. Use your DataStage job to write to a single file. Then write another DataStage job, or a BAT file, to split that file into pieces each containing no more rows than your tool can m...
by ray.wurlod
Thu May 18, 2006 6:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performance tips
Replies: 1
Views: 798

Define "performance".
by ray.wurlod
Thu May 18, 2006 6:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fixed Width file in UNIX
Replies: 11
Views: 2558

If it's working properly in DataStage, leave it alone.

The "problem" seems to be in your data viewer at UNIX level, not in DataStage.
by ray.wurlod
Thu May 18, 2006 4:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: format string
Replies: 3
Views: 979

My thought is that you have not specified exactly how you want the output to appear. If you have, then a Fmt() function wrapped around two Field() functions would do the job. Or multi-concatenation of fixed strings and the results of two Field() functions. There are other solutions too.
by ray.wurlod
Thu May 18, 2006 4:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IMPORT&EXPORT ERROR
Replies: 9
Views: 3820

Welcome aboard. :D

When importing are you referring to a valid DataStage export file? If you exported in XML format, for example, you will need to choose the XML import option.
by ray.wurlod
Thu May 18, 2006 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fixed Width file in UNIX
Replies: 11
Views: 2558

The \ in the od -c output leads into a representation of a non-printing character, such as \09 for tab. The fact that View Data sees it correctly suggests that it is fixed-width; the fact that your UNIX view does not suggests that the viewer is expanding tabs.