Search found 53125 matches

by ray.wurlod
Tue Aug 05, 2008 12:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we implement a simple filter condition in buildop
Replies: 5
Views: 1150

Yes, but it's total overkill. What the Transformer stage generates (in version 7.5.2 and later, anyway) is essentially an operator (the same as what a BuildOp is).
by ray.wurlod
Mon Aug 04, 2008 11:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion of XML file to CSV file
Replies: 7
Views: 2553

Challenge the requirement to use a parallel job. You are reading ONE FILE, a sequential operation. You are writing ONE FILE, a sequential operation. Parallel execution is a waste of time in this case, and you don't need the unnecessary overheads thereof. Server jobs will be supported into the indefi...
by ray.wurlod
Mon Aug 04, 2008 9:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Facing MMAP Failed error
Replies: 1
Views: 1267

mmap is memory map. I'm guessing (because you did not post complete pertinent information) that a tsort operator is involved. It was unable to get enough memory to perform what it needed to. Research (via help, DSXchange search or the manuals) how to allocate more memory to sorting operations.
by ray.wurlod
Mon Aug 04, 2008 9:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Wait For File Logic
Replies: 3
Views: 1275

A search of DSXchange will uncover suitable routine code.
by ray.wurlod
Mon Aug 04, 2008 8:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Hangs waiting for Status
Replies: 2
Views: 1236

What proof do you have that the child job completed successfully, if you can't open its folder in Director?

Do the child jobs invoke after-stage or after-job subroutines?

Is your repository database in need of re-indexing?
by ray.wurlod
Mon Aug 04, 2008 5:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage server job locked
Replies: 15
Views: 18502

The deadlock daemon will not start automatically until DataStage is re-started. The job may still lock. The deadlock daemon will clear that lock, but it may take quite some time - the daemon only wakes every 15 minutes (by default) and it usually requires two cycles to clear locks held by redundant ...
by ray.wurlod
Mon Aug 04, 2008 5:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 11788

&HOLD& is a directory. However the "&" character is special to the shell, so needs to be quoted or escaped in operating system commands such as cd. cd \&HOLD\& or cd '&HOLD&' This is not a DataStage requirement - it is an operating system requirement. A FMT specification ...
by ray.wurlod
Mon Aug 04, 2008 3:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Enable OSH to use all avaliable CPUs
Replies: 3
Views: 1218

Logical partition. Nothing whatsoever to do with DataStage.
by ray.wurlod
Mon Aug 04, 2008 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamically modifying external function's logic
Replies: 9
Views: 2134

It's not possible. You could certainly change the source code dynamically, even compile and link that, but the job would already have connected to (opened) the older version.

Preferable would be to build the flexibility into the function code itself.
by ray.wurlod
Mon Aug 04, 2008 3:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stage variables not seen from the imported dsx
Replies: 5
Views: 1193

You can right click in the background area of the Transformer stage and gain access to these kinds of functionality through that menu.
by ray.wurlod
Mon Aug 04, 2008 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Server Software
Replies: 1
Views: 585

The optimal connection will be had through the DB2 Connector stage (new in version 8.0). You should be able to connect to a local DB2 instance without the need for DB2 Connect software. But to connect from UNIX to DB2 on Windows you will need this software. Your DBA should have it, and be able to in...
by ray.wurlod
Mon Aug 04, 2008 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datasets for a job
Replies: 4
Views: 1413

Just look at the generated OSH or, even better, the score.
by ray.wurlod
Mon Aug 04, 2008 3:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage PX Warning: Import consumed only 27bytes of the re
Replies: 5
Views: 4380

What "control characters" are you getting in your data?
by ray.wurlod
Mon Aug 04, 2008 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage giving Null's
Replies: 6
Views: 1422

Good. Now verify (using Link Execution Order) that the left and right inputs are as you believe them to be. Your belief that "a left outer join should return all rows from the left input with either matched columns from the right input or nulls for these columns" is correct. If there happen to be nu...
by ray.wurlod
Mon Aug 04, 2008 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe Stage
Replies: 5
Views: 1823

Change the file dictionary from MD4 to MD44 (or MD4P if your data already contain a decimal place character).