Search found 53125 matches

by ray.wurlod
Thu Dec 30, 2010 3:41 pm
Forum: General
Topic: dsjob command help
Replies: 14
Views: 5193

Hmm.. look on the Job tab of the Job activity - make sure that the parameter values are actually being set correctly. Then look in the job sequence log for a "job run requested" message, which should show the parameter values being passed to the job. Then look in the related log for the jo...
by ray.wurlod
Thu Dec 30, 2010 3:36 pm
Forum: General
Topic: How to find the jobs location in Unix sever
Replies: 12
Views: 3849

You don't need jobid - that's just there in case you want to establish an alias for the job name. Simply use the job name. Make sure, before attempting to run a job, that it is in a runnable state - that is, compiled, not already running and not aborted/crashed. You can determine this with the -jobi...
by ray.wurlod
Wed Dec 29, 2010 10:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query on SAN filesystem
Replies: 4
Views: 2613

Definitely maybe. It depends. How complex are these transformations? How many are there? I wouldn't expect "drastic" changes unless these number differences were orders of magnitude. But, if the expressions are written inefficiently...
by ray.wurlod
Wed Dec 29, 2010 4:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query on SAN filesystem
Replies: 4
Views: 2613

4GB is probably not sufficient. I believe IBM suggest a minimum of 8GB.

Local disk is preferred, but the reality is that most pSeries sites use SAN of some kind. The difference is minor, but local disk is preferred particularly for scratch disk.
by ray.wurlod
Wed Dec 29, 2010 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ILOG ,DATASTAGE integration
Replies: 3
Views: 1951

Given recent acquisitions, I believe IBM will be doing something more with ILOG in a future version. This is based on a wine-fuelled conversation at IOD 2010. Jay, are you listening?
by ray.wurlod
Wed Dec 29, 2010 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find if job is IO limited
Replies: 4
Views: 2029

The tool is covered in better depth than in the manual in the IBM class "Advanced DataStage".
by ray.wurlod
Wed Dec 29, 2010 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference in Sequential File stage between DS 7.5 and 8.1
Replies: 1
Views: 1308

Welcome aboard.

You've been relying on a bug in version 7.5 which has been fixed in version 8.1. That value is simply not an integer. You could read it as VarChar and convert from hex within a Transformer stage or, perhaps, an External Filter stage.
by ray.wurlod
Wed Dec 29, 2010 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partition method behind Auto Partition.
Replies: 3
Views: 1160

Yes, the tokens that describe partitioning are like eAny, eHashed in the score. The rules about what (Auto) gives have been posted in the past on DSXchange. You can Search for them.
by ray.wurlod
Wed Dec 29, 2010 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Alpha Num and Alnum on empty string
Replies: 4
Views: 1725

The most reliable is Len(InLink.TheString) which returns 0 for "" and a non-zero value for any other non-null string.
by ray.wurlod
Wed Dec 29, 2010 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: The set of available nodes for op1 is empty
Replies: 7
Views: 5658

Curious to learn the results of your deliberation. Probably the first place to look would be the APT_CONDUCTOR_NODE environment variable definition.
by ray.wurlod
Wed Dec 29, 2010 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: surrogate key issue
Replies: 4
Views: 1757

A surrogate key provides uniqueness. What you are requiring is not uniqueness. Therefore the Surrogate Key Generator stage is not the right stage to use. The approach suggested by Manoj will get you close, though generating the 10000 values in parallel on each node. A better solution will involve an...
by ray.wurlod
Wed Dec 29, 2010 3:48 pm
Forum: General
Topic: configuring
Replies: 7
Views: 2136

DataStage is just another client application as far as Oracle is concerned. Therefore what you need to include in tnsnames.ora is exactly the same information as you would have there for any other client.
by ray.wurlod
Wed Dec 29, 2010 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.BCIPut call to SQLExecute failed
Replies: 2
Views: 1796

Add reject handling to the Transformer stage immediately upstream of the ODBC stage. Tell us what error information is thus captured.
by ray.wurlod
Wed Dec 29, 2010 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: call to function SQLConnect failed.
Replies: 2
Views: 3709

You also need to check the uvodbc.config file in the project and, perhaps, in the DSEngine directory.
by ray.wurlod
Wed Dec 29, 2010 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To Fetch Stage Variable Output
Replies: 2
Views: 1413

What you request is impossible as a direct pass. Stage variables occur wholly within Transformer stages in parallel or server jobs. User Variables activities occur in sequence jobs. The one can never occur in the other. The most direct would be to load the job's user status area with the value of th...