Search found 53125 matches

by ray.wurlod
Sun Jun 06, 2010 12:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pass UNIX environment variable to DataStage jobs
Replies: 13
Views: 12374

Is the environment variable's value set in the shell of the process that runs the job (dsapi_server or dsapi_slave, perhaps)?
by ray.wurlod
Sun Jun 06, 2010 12:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is it possible to install TPT plugin to DX 8.01?
Replies: 9
Views: 2948

Have you asked IBM or searched on their website?
by ray.wurlod
Sun Jun 06, 2010 12:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Duplicate stage returns more than one row
Replies: 8
Views: 2628

The Remove Duplicates stage will return as many rows as there are distinct key values in your data stream.
by ray.wurlod
Sun Jun 06, 2010 12:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ereplace and fmt equivalent in parallel
Replies: 4
Views: 3358

It won't. For starters, there's no If in the expression, even though there are Then and Else. Second, you seem to be assuming some kind of loop through the characters in the string, which does not exist. Set a stage variable to contain all the characters that must be converted to zero, for example s...
by ray.wurlod
Sun Jun 06, 2010 12:38 pm
Forum: General
Topic: Datastage interview questions
Replies: 6
Views: 5884

4. What is the correct spelling of the second person personal pronoun in English?
5. In what way does DSXchange resemble a mobile phone? Then why are you using SMS-style abbreviations?!!
by ray.wurlod
Sat Jun 05, 2010 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Validate email ID
Replies: 7
Views: 2213

If you have QualityStage licensed you can use the VEMAIL rule set.
by ray.wurlod
Sat Jun 05, 2010 2:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: jobs are aborting when running. Below is the error message
Replies: 3
Views: 1226

We don't do "urgent". DSXchange is an all-volunteer site whose members post if and when they can. If you need "urgent" help sign up for priority service with your official support provider and learn just how much "urgent" costs. Meanwhile why not Search DSXchange? You'...
by ray.wurlod
Sat Jun 05, 2010 2:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ereplace and fmt equivalent in parallel
Replies: 4
Views: 3358

Convert() function is perfect for this task, in both server and parallel jobs.
by ray.wurlod
Fri Jun 04, 2010 4:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mixed O/S 3 Tier Architecture for DataStage
Replies: 12
Views: 7156

IBM usually advise against mixing platform types.

Therefore they're unlikely to document how to do it. Indeed, the most recent Installation and Upgrade Guide specifically prohibits mixing platform types between repository, services and engine tiers.
by ray.wurlod
Fri Jun 04, 2010 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Improve performance with multiple transformers
Replies: 24
Views: 6451

Is operator combination enabled or disabled?

Use Monitor or Performance Analyzerto report on the CPU consumption. This will provide guidance about which sets of stages could benefit from disabling operator combination.
by ray.wurlod
Fri Jun 04, 2010 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timestamp to Numeric value
Replies: 3
Views: 1180

Or you could just convert all the non-numeric characters to "" then store in a BigInt and proceed. Hence Craig's question about what format of number were you looking to use.
by ray.wurlod
Fri Jun 04, 2010 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage SAMPLE
Replies: 3
Views: 1057

How many nodes? (Let me guess four.) Please let us know ALL the settings in your Sample stage. Each node is taking a 50% sample. Out of 23 rows on each node, that will be 11.5 rows. There is no "half row" so you get 11 on each. Actually the arithmetic is wrong there - it should have been 1...
by ray.wurlod
Fri Jun 04, 2010 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: "In" operator in a derivation
Replies: 4
Views: 1549

Locate is not a function - it's a statement type in the DataStage BASIC programming language. Index() can do what you require, but you may need to provide separator characters on each string to test if there are nested substrings that might yield false positives. Index("Open|Progress|Hold|Faile...
by ray.wurlod
Fri Jun 04, 2010 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSR_RECORD 81021 error
Replies: 5
Views: 4435

This is a bug of long standing, and the solution is "don't login using Omit" as you noted. Without Omit login is via TCP/IP and passes user name and password credentials. With Omit login is via LAN Manager and passes a Windows SID. Sequences (but no other job types) write to the client whe...