Search found 53125 matches

by ray.wurlod
Sat May 20, 2006 2:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: /.dshome or DSHOME environment variable is invalid or missin
Replies: 5
Views: 6119

What happens when you execute the command cat /.dshome ?

Is yours an "-itag" server installation?

DSHOME must point to the Engine directory.

Code: Select all

DSHOME=/1a01/datastage/Ascential/DataStage/DSEngine
export DSHOME
by ray.wurlod
Sat May 20, 2006 2:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: From where can I get the information regarding Plugin Stages
Replies: 2
Views: 1093

There is a separate manual for writing server plug-in stages called, from memory, DataStage Plug-In Writer's Guide . It does not ship with the usual set of manuals, but can be requested through your vendor. I would counsel great caution before embarking on this task. Most who have investigated have ...
by ray.wurlod
Sat May 20, 2006 1:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can i define metadata of file columns at run time.
Replies: 10
Views: 2131

Of course it's possible, except that you must have a priori knowledge of the metadata to be able to design it! This doesn't just appear out of thin air!
by ray.wurlod
Sat May 20, 2006 1:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job handling in Unix
Replies: 10
Views: 7304

Clearly you did not attend one of the training classes that I ran! If you had a bad experience, do let IBM know. They seem to be quite genuine in wanting to improve the training classes.
by ray.wurlod
Sat May 20, 2006 1:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Accessing Data from Mainframe system
Replies: 7
Views: 2526

1. "UNIX Support Systems" - a mechanism for running UNIX in a partition of a mainframe (typically AIX on OS/390).

2. The prefix used for names of vessels in the United States navy. :lol:
by ray.wurlod
Sat May 20, 2006 1:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to compile a parallel job after it aborts
Replies: 8
Views: 1993

You need to look in the job log to find out what processes were involved.
by ray.wurlod
Sat May 20, 2006 1:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchestrate Operators
Replies: 14
Views: 6968

There is an Orchestrate Operators manual among the Orchestrate manuals. Your vendor ought to be able to supply you with a set at no cost. They're also handed out on IBM's DataStage EE classes.
by ray.wurlod
Sat May 20, 2006 1:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Checking for two types of records in the same column
Replies: 3
Views: 1168

Surely alnum("000034A3c") would return true, since every character is alphanumeric? Where does it require a leading alphabetic character?
by ray.wurlod
Sat May 20, 2006 1:44 am
Forum: Site/Forum
Topic: Posts per day
Replies: 13
Views: 7111

Mind over matter. Despite an ageing body, I still play and umpire baseball (and thereby get to think and do other things, outside "work"). And I have a number of strategies to relax, including taking an afternoon out just to play sitar.
by ray.wurlod
Fri May 19, 2006 4:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to capture the rejected Rows from Sybase BCP load
Replies: 1
Views: 1183

Bulk loaders maintain their own log file and their own rejected records file. You can specify where these are. The bulk loader program (bcp in your case) processes the data file only after DataStage has finished writing rows into the data file. Thus you can not capture rows rejected by bcp within th...
by ray.wurlod
Fri May 19, 2006 4:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can i define metadata of file columns at run time.
Replies: 10
Views: 2131

Not possible out of the box. DataStage is driven by metadata. The metadata must be in place first.
by ray.wurlod
Fri May 19, 2006 4:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort Stage
Replies: 6
Views: 1713

If you use a UNIX sort you need to specify the UNIX sort command options that identify the sort key (usually -k, but this might be qualified by other options such as the delimiter option, the sort order option, and so on). On UNIX execute man sort to learn what the options are on your particular UNIX.
by ray.wurlod
Fri May 19, 2006 4:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to compile a parallel job after it aborts
Replies: 8
Views: 1993

You need to make sure that every process (conductor, section leaders, players) associated with the jobs is logged out, is not holding any locks, network resources, file units or other resources.
by ray.wurlod
Fri May 19, 2006 2:54 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

Make the field either nullable or non-nullable consistently (both sides of the Aggregator stage and elsewhere in the job).

More generally, don't do anything that annoys the product.
by ray.wurlod
Fri May 19, 2006 2:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Complex flat file - more than 1 Depending Occurs
Replies: 5
Views: 1803

From memory, the CFF stage is specifically documented as NOT handling more than one OCCURS DEPENDING ON clause.