Search found 53125 matches

by ray.wurlod
Sat Nov 19, 2005 2:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSIPC_OPEN_TIMEOUT Error and Basic Transformer
Replies: 5
Views: 5284

"Mutex" stands for "mutually exclusive" and is one mechanism by which semaphores are implemented. A semaphore is a place to wait. When a process waits on a mutex lock (because, for example, the lock is held by another process) it does not sleep but, instead, "spins its wheels" attempting to gain the...
by ray.wurlod
Sat Nov 19, 2005 1:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Duplicate Warning
Replies: 3
Views: 1099

The reason that partitioning must be the same is to guarantee that any duplicates occur on the same processing node. The reason that sorting should occur is so that least memory can be consumed - once the sort key value changes, the stage can be certain that there will be no more matches against thi...
by ray.wurlod
Fri Nov 18, 2005 7:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to get data from databrowser for Universal Local UV
Replies: 9
Views: 3198

OK you tricked me. You had the text of a paragraph, complete with underscores at the ends of lines, but you called it a script.

I think you'll find that UniVerse/SQL requires dates to be in 2005-11-15 format (ISO 8601 standard).
by ray.wurlod
Fri Nov 18, 2005 7:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clear Read Only flag for job
Replies: 5
Views: 1315

Ah, introspection. Or is it introrogation?
by ray.wurlod
Fri Nov 18, 2005 7:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove header and footer(first and last line)
Replies: 13
Views: 5817

... then the reject link could feed a stream that accepts the header but rejects the footer, and these streams could then be processed appropriately!
by ray.wurlod
Fri Nov 18, 2005 7:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: library was compiled on a system that is incompatible
Replies: 3
Views: 2830

It appears that the compilers on the two systems are incompatible. This may be a different version, through to different compilers. You or a system administrator must investigate.
by ray.wurlod
Fri Nov 18, 2005 7:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error while reading the file with ftp stage
Replies: 1
Views: 1287

You claim the problem is in an FTP stage yet you post the code generated from a Transformer stage. Why? Syntax error: Error in "transform" operator: Error in operator arg: In field "Corp": Expected ";", got: ".", line 87 In field "Corp": Expected ";", got: ".", line 246 The error message suggests th...
by ray.wurlod
Fri Nov 18, 2005 7:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSIPC_OPEN_TIMEOUT Error and Basic Transformer
Replies: 5
Views: 5284

I think that the multi-instance thing is a red herring, and has coincidentally occurred at a time when the system total load dropped. The ipc errors are usually to do with row buffering. When you're using a BASIC Transformer the data have to be buffered and translated to and from typeless. This uses...
by ray.wurlod
Fri Nov 18, 2005 7:20 pm
Forum: IBM QualityStage
Topic: Can QS MATCH be Run in Parallel Mode
Replies: 3
Views: 2370

Get in touch with your support provider. There is a recent patch that addresses being able to run STAN in parallel. Nothing I've heard of for MATCH, but some kinds of match wouldn't have a problem - you might just have to be careful with partitioning so that you could be sure that all potential matc...
by ray.wurlod
Fri Nov 18, 2005 8:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clear Read Only flag for job
Replies: 5
Views: 1315

But first, ask yourself why it's there. Does someone want to prevent you from hacking jobs in a production environment?
by ray.wurlod
Fri Nov 18, 2005 8:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Convert Mainframe jobs to Server jobs
Replies: 4
Views: 1343

The only one I know of is called a brain.
by ray.wurlod
Fri Nov 18, 2005 8:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Output link order
Replies: 7
Views: 1877

The apparent order (on the design canvas) can not be changed - the tool does not give you the ability to select the attach points between links and stages - rather this is computed by an internal algorithm in the client tool. You can hover the mouse pointer over a link to determine its execution ord...
by ray.wurlod
Fri Nov 18, 2005 8:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting corrupted Empty category/folder
Replies: 8
Views: 3359

chulett wrote:Have you tried performing the deletion from the Manager? There are client tools other than the Designer, ya know. :wink:
As of version 8.x there is no more Manager client. Its functionality is all moved into the DataStage/QualityStage Designer. Fewer client tools, yay!
by ray.wurlod
Fri Nov 18, 2005 8:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: COMMANDS
Replies: 2
Views: 725

You may use any legal command you find in a manual, including in the UniVerse manuals downloadable from IBM's web site. However the metadata (column definitions) for Repository tables is not in the public domain, nor do they have a first normal form structure. So there is also the question of whethe...
by ray.wurlod
Fri Nov 18, 2005 8:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe tables
Replies: 2
Views: 822

You need to use a UniVerse stage, not a UniData stage, to access UniVerse tables. What you've designed is akin to using a DB2 stage to access an Oracle table - it just doesn't work. Technically the DataStage Repository database is not there for you to store your data. In the next release of DataStag...