Search found 53125 matches

by ray.wurlod
Wed Apr 30, 2008 5:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: write range map
Replies: 7
Views: 2246

I don't know that there's an advantage one over the other. It's really driven by the business requirement - do you need to keep ranges of keys contiguous? If not, prefer hash or modulus for a key-based partitioning algorithm; there's no pre-processing required for either of these.
by ray.wurlod
Wed Apr 30, 2008 5:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Formatting VarChar in EBCDIC for Parallel Jobs
Replies: 2
Views: 1007

Welcome aboard.

There are explicit conversion functions in parallel jobs, such as StringToDecimal() or StringToFloat(). I doubt that any of these has the ability to handle a 500-digit number without loss of precision, however.
by ray.wurlod
Wed Apr 30, 2008 5:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine for Encrypt and decrypt
Replies: 1
Views: 1037

You can write custom routines to do whatever you like. Go to the Routines branch of the repository and create a new server routine. There are zillions of encryption algorithms, and you can write your own.
by ray.wurlod
Wed Apr 30, 2008 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compiled Date in DataStage Repository
Replies: 10
Views: 8694

It's not at the top of my priority list. The project I'm being paid to work on is nearing a deadline.
by ray.wurlod
Wed Apr 30, 2008 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: write range map
Replies: 7
Views: 2246

Range partitioning requires that the data be pre-processed so that the ranges can be determined. The algorithm attempts to distribute rows as equally as possible over the number of partitions, and to identify those values in the key column(s) that will yield that best distribution. Those values are ...
by ray.wurlod
Wed Apr 30, 2008 4:03 pm
Forum: General
Topic: Installation of DataStage Server Jobs and PX
Replies: 0
Views: 850

No.

You can install on XP Pro but even that's not officially a supported platform.

Currently there is no support at all for Vista.
by ray.wurlod
Wed Apr 30, 2008 3:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject Records in Join
Replies: 11
Views: 3929

A Join does not generate any "rejects", either in SQL or in DataStage.
by ray.wurlod
Wed Apr 30, 2008 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LOG file & datastage job viewing in aix
Replies: 12
Views: 18421

I'm not a moderator in these forums, so I go "off color" (to Dark Red) when making these points.

I must have been tired to miss the delinquencies in the initial post.
by ray.wurlod
Wed Apr 30, 2008 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to delete job from a project under command line
Replies: 21
Views: 13744

That doesn't look particularly safe to me. Yes i thought so... that's why i have not tested delete query in UniVerse Database. :D I have just asked....whether this can be implemented (by using multiple(sub-queries) joins with other "DS" tables in UniVerse..... By searching in this forum i have foun...
by ray.wurlod
Wed Apr 30, 2008 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: tmp space
Replies: 10
Views: 2692

Yes, TMPDIR is the third option for scratch space in parallel jobs. UVTEMP is scratch space used by server jobs. Custom stages may use either, at the whim of their author.
by ray.wurlod
Wed Apr 30, 2008 2:46 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Schema Definition for Fixed Width Files
Replies: 8
Views: 5787

It's my understanding that line terminators are required. You'll need to pre-process your file - perhaps using DataStage - to add them.
by ray.wurlod
Wed Apr 30, 2008 5:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: capturing records
Replies: 1
Views: 650

Why don't you Search for an answer? For this very question has been answered previously on DSXchange. It can not be done with a Remove Duplicates stage, which - as its name suggests - removes duplicates.
by ray.wurlod
Wed Apr 30, 2008 5:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Certification Objectives
Replies: 3
Views: 1234

dsjob is the way to obtain information externally. It has families of options, one for getting information from the log (all of the form -logxxxx) and one for getting information about the job and its components (all of the forum -xxxxinfo). Deployment is really about making sure that the engine is...
by ray.wurlod
Wed Apr 30, 2008 5:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: to get first & last date of previous month
Replies: 1
Views: 847

Welcome aboard.

The best solution to all these kinds of questions is to have a time dimension table against which you can perform a lookup.