Search found 53125 matches

by ray.wurlod
Fri Jul 15, 2005 7:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "Abnormal termination in stage"... DataStage V 7.5
Replies: 2
Views: 1671

That the underlying engine (uvsh) has generated a SIGINT doesn't help you to diagnose the problems; it uses signals for very many things. This requires specialist analysis; preserve the core file and report the problem to your support provider. They may need to analyse the core file. You may find a ...
by ray.wurlod
Fri Jul 15, 2005 7:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Profile Stage Vs Quality Stage
Replies: 3
Views: 1567

There is substantial overlap between what ProfileStage (formerly MetaRecon) and AuditStage (formerly Quality Manager) do, but enough differences to warrant separate products - though "they" may merge the functionality one day. Both look at the actual data (rather than the metadata) to determine what...
by ray.wurlod
Fri Jul 15, 2005 7:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation Error
Replies: 4
Views: 1279

It's usually in a constraint expression or output column derivation (occasionally in a reference key expression or stage variable initialization or derivation expression) left over after changing the name of an input link. If you ever change the name of any input link to a Transformer stage (particu...
by ray.wurlod
Fri Jul 15, 2005 7:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Different types of Hash files
Replies: 7
Views: 2366

1. What are the different types of Hashed files? Static (the number of groups is pre-set and does not change except through intervention) and dynamic (the number of groups can change dependent on the volume of data stored). For more information, search the forum. There are seventeen "types" of stat...
by ray.wurlod
Fri Jul 15, 2005 7:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Different types of Hash files
Replies: 7
Views: 2366

Except for the pathnames there are no differences between hashed files on UNIX and on Windows. The internal byte order may differ but that's governed by the type of CPU chip rather than by the operating system. There are, for example, some UNIX variants that run on Intel chips. In any case, the inte...
by ray.wurlod
Fri Jul 15, 2005 6:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issues with metadata copied from server job
Replies: 8
Views: 1665

Server jobs have no data types. Parallel jobs are strongly types. As already noted, a Char(x) column (in a schema string[x]) must have precisely x characters. A decimal data type value must have not more than the correct number of scale digits (to the right of the decimal place). All numeric data ty...
by ray.wurlod
Fri Jul 15, 2005 6:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while installing DataStage Server
Replies: 9
Views: 4695

I have x86 family process and Windows64 that can handle 32bit applications! So if we follow the terms of formal logic DataStage can be installed on Win64. Where "formal logic" breaks down here is that DataStage engines make calls to system functions that may not exist in Win64. That's why we have t...
by ray.wurlod
Fri Jul 15, 2005 6:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Imported Job Aborts on new server
Replies: 5
Views: 1771

Welcome aboard! :D My guess is that, on the original server, the parameter mentioned in the error message was passed from a controller (job sequence?) or environment variable but this is not occurring in the new server. Another possibility is an incomplete export/import, in which that parameter did ...
by ray.wurlod
Fri Jul 15, 2005 6:31 pm
Forum: IBM QualityStage
Topic: Many to Many relationship matching between 2 files
Replies: 8
Views: 5046

It matters for performance. FileA should be the larger.
by ray.wurlod
Fri Jul 15, 2005 4:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ouput from an ExecSh-run script as input to a job
Replies: 9
Views: 6645

Do it in a job sequence rather than trying to use a before-job subroutine; your search will reveal that a running job cannot change its own parameter values. In the job sequence use an Execute Command activity to execute the command. In the Job Activity that runs the job can set the parameter using ...
by ray.wurlod
Fri Jul 15, 2005 4:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Version control Vs Clear Case
Replies: 2
Views: 999

Version Control includes the ability to version directories (folders) that are not part of DataStage, for example in which you might store scripts. The way it's written it requires the directory to be in the project directory but I have found that it's happy if there's a symbolic link (shortcut) in ...
by ray.wurlod
Thu Jul 14, 2005 8:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Backup Error Message: Any ideas?
Replies: 3
Views: 1422

That record (J\328\V0) contains the layout of your design canvas. If it's not there you've got major problems. Get an experienced consultant to check the views from J\328\ROOT to determine whether there's a different base view. If not, you really will need to import a new version of the job and to d...
by ray.wurlod
Thu Jul 14, 2005 8:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to fill fields with zeros.
Replies: 4
Views: 1137

For example

Code: Select all

Fmt("0", "R%10")
by ray.wurlod
Thu Jul 14, 2005 8:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exec DOS questions
Replies: 11
Views: 3027

Use DSExecute with the first (Shell) argument set to "DOS".
The third argument contains the output. All of the output, with each line returned as a field in a dynamic array.
by ray.wurlod
Thu Jul 14, 2005 8:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic Hash File Properties
Replies: 9
Views: 1959

Your maximum record size is 95 bytes plus overhead. You will get no value from decreasing LARGE.RECORD, as your record sizes are too homogeneous. SPLIT.LOAD provides a "safety overhead" per group. Groups on average will fill to this level. However we don't live in a perfect world, so some groups wil...