Search found 53125 matches

by ray.wurlod
Tue Dec 05, 2006 11:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File passing "?" as values
Replies: 15
Views: 3376

Are these default hashed files (dynamic)? Is there anything unusual about the output stage?

What I'm thinking here is a behaviour of UniVerse when constructing file names, to substitute the "?" character for "". But I've not seen this occur with data.
by ray.wurlod
Tue Dec 05, 2006 7:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: upgrading server version
Replies: 3
Views: 1292

You CAN upgrade from server to parallel version, simply by purchasing an extra licence. All the software is already in place. However, at version 6 (indeed at any version other than 7.5x2 specificially) you can only design parallel jobs on Windows platforms - you will not be able to execute them. Ha...
by ray.wurlod
Tue Dec 05, 2006 7:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installing parallel canvass in standalone system
Replies: 6
Views: 1357

You're way off track, but not as far off as your friend.

Read Chapter 2 of Parallel Job Developer's Guide, which explains the architecture requirements. SMP can be a single CPU server, but this will have limited capacity.
by ray.wurlod
Tue Dec 05, 2006 7:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looping
Replies: 17
Views: 5487

It doesn't need to be recursive. Use a simple counted loop from month number down to 1, perhaps in a Start Loop activity.
by ray.wurlod
Tue Dec 05, 2006 7:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reply = 9 error in Execute_Command stage
Replies: 17
Views: 4151

Were there 9 files in the archive, by any chance?
by ray.wurlod
Tue Dec 05, 2006 7:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Runaway osh processes
Replies: 9
Views: 2749

The job number (317 in this case) is in the last line of your code. Otherwise get into the Administrator client Command window and SELECT JOBNO FROM DS_JOBS WHERE NAME = '<<Job Name>>'; Since the new version is working I'll not devote more thought to runaway osh processes. There's nothing in the cod...
by ray.wurlod
Tue Dec 05, 2006 7:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding universe command utility
Replies: 9
Views: 1624

LIST.DICT is a paragraph (macro, if you like) that invokes LIST DICT but prompts for the file name if you forgot it give it on the command line. The default display for file dictionaries, governed by the @ phrase in the dictionary for dictionaries, specifies sorting by TYPE then by KEY.CODE, so that...
by ray.wurlod
Tue Dec 05, 2006 7:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting numbers to decimal dot, and comma separated
Replies: 10
Views: 3477

gpbarsky wrote:P.D.: does it exist an user guide for server jobs and sequencers ?

Server Job Developer's Guide
Core Developer's Guide

Both manuals are in the Docs folder with your client software.
by ray.wurlod
Tue Dec 05, 2006 7:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File passing "?" as values
Replies: 15
Views: 3376

That doesn't solve the mystery of the "?" character. Can you post a couple of source records that illustrate this issue? Also tell us your exact DataStage version. Maybe someone can try to replicate.
by ray.wurlod
Tue Dec 05, 2006 7:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with trimming the filed value
Replies: 8
Views: 1746

Of all the answers given, adding zero requires the fewest CPU cycles and is therefore the most efficient. Both arithmetic solutions (add zero, multiply by one) rely on the fact that DataStage BASIC always returns the shortest possible character string as its arithmetic result - leading and trailing ...
by ray.wurlod
Tue Dec 05, 2006 7:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: abt universe
Replies: 2
Views: 835

Does your manager seek to access data from UniVerse using parallel jobs, or just expressing concern about the DataStage Repository? If the latter the answer is that there is no choice. All job designs and other components are stored in the same tables, irrespective of job type. There is only the one...
by ray.wurlod
Tue Dec 05, 2006 6:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert new rows without update
Replies: 6
Views: 1186

You can do a lookup directly against the target table. If the record is not found, you need an insert.

But this will be slower (far slower, if it's a remote Oracle table) than pre-loading a hashed file with the keys from the target table and looking up against that.
by ray.wurlod
Tue Dec 05, 2006 6:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mutex Timeouts
Replies: 5
Views: 1536

No, 0 means unlimited. Slightly increasing SPINSLEEP (maybe to 6000) will mean that the wait between retries is extended, so that the likelihood of hitting the timeout is reduced.

Changes do not take effect until uvregen has been executed and services restarted.
by ray.wurlod
Tue Dec 05, 2006 6:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: importance of Display column in oracle stage
Replies: 7
Views: 1220

But wait! There's more!

It (Display Width) also controls the column width if you write to (or read from) a fixed-width sequential file.
by ray.wurlod
Tue Dec 05, 2006 6:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job scheduling process
Replies: 6
Views: 1315

Not every database has a function called DATEDIFF. This is where you might run into an issue using DRS.