Search found 53125 matches

by ray.wurlod
Thu Mar 06, 2014 8:23 pm
Forum: Enhancement Wish List
Topic: SetFocus
Replies: 0
Views: 6171

SetFocus

I've been working on actual development for a change. Here's an idea that can save one mouse click for every stage opened. When a stage is opened, focus should automatically be set to the first mandatory property's field value field. (Probably much more difficult to implement than to say but, hey, i...
by ray.wurlod
Thu Mar 06, 2014 8:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema reconciliation issue
Replies: 9
Views: 9788

"Schema" here does not mean the database schema in which the table resides - it means the record structure. (There are historical reasons for this, with which I won't bore you.) I would suggest that one of the columns (or more than one) is defined differently in your pre-production environ...
by ray.wurlod
Thu Mar 06, 2014 8:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Override default 50 warning message
Replies: 1
Views: 631

When you submit the run request from a client, visit the Limits tab on the Job Run Options dialog. When you submit using the command line interface dsjob, specify the -warn option. It is also possible to change the default globally, using Tools > Options (Limits tab) in Director. Note that this chan...
by ray.wurlod
Thu Mar 06, 2014 8:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Share container parameter issue
Replies: 6
Views: 1802

You probably need to mention the default value along with the nullable property in your schema file.
by ray.wurlod
Thu Mar 06, 2014 8:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Column Count
Replies: 8
Views: 2686

Aggregator stage, Non-missing values count output column calculation method. Split your data into five streams, one for each column to be counted. Eliminate all unneeded data.
by ray.wurlod
Thu Mar 06, 2014 7:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CDC Stage strange issue
Replies: 8
Views: 2706

The other best practice around operator combination is to disable it when the optimizer has become too greedy, and packed too many operators into a single combined operator (it will unthinkingly combine as many as possible that meet the criteria*), such that total demand for that process's resources...
by ray.wurlod
Thu Mar 06, 2014 7:52 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Automating IA Data rules run & exporting the results
Replies: 2
Views: 3738

Add Stuart's response to your Favorites.
by ray.wurlod
Wed Mar 05, 2014 10:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CDC Stage strange issue
Replies: 8
Views: 2706

Yes. Use $APT_DISABLE_COMBINATION as a job parameter (environment variable).
by ray.wurlod
Wed Mar 05, 2014 6:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 connector stage not writing rejected data
Replies: 8
Views: 6254

asorrell wrote:One big difference - you can't write NULL values to a sequential file. If the records contained NULL's they'd all bounce. They have to be handled explicitly prior to writing them to sequential files.
... or within the Sequential File Stage using Null Field Value properties, for example.
by ray.wurlod
Wed Mar 05, 2014 3:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 SQL error -254
Replies: 3
Views: 2062

I answered the question "Is there any tricks out there to get the true DB2 error codes to go to the log?" I don't know any other "tricks" to achieve this result. I prefer to prevent error codes. Once you've figured out what the errors are you can fix the cause(s), then revert you...
by ray.wurlod
Tue Mar 04, 2014 8:03 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: IA 8.7 - ODBC Connector VS. Oracle Connector
Replies: 1
Views: 2728

ODBC Connector uses ODBC protocols, and needs to load an ODBC driver (maybe) which makes calls via the Oracle OCI. The Oracle Connector invokes the Oracle OCI functions directly. ODBC also has to translate between its "standard" data types and Oracle idiosyncratic data types. On these base...
by ray.wurlod
Tue Mar 04, 2014 8:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 SQL error -254
Replies: 3
Views: 2062

Try setting Array Size and Transaction Size to 1, at least while troubleshooting. Like every other property in Connector stage types, these can be made job parameters.
by ray.wurlod
Tue Mar 04, 2014 7:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 connector stage not writing rejected data
Replies: 8
Views: 6254

Show us the error message(s) associated with the abort. Also show us the settings in the DB2 Connector for the rejects link. In particular, what kinds of rejects are you capturing and which kinds are you ignoring?
by ray.wurlod
Tue Mar 04, 2014 7:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting up RCP job
Replies: 5
Views: 2640

Check that RCP is enabled on the output link from the Transformer stage.

This is not the same as the stage properties setting - the Transformer supports multiple output links - the stage property asserts the setting for newly-added output links.
by ray.wurlod
Tue Mar 04, 2014 7:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Read is slow
Replies: 17
Views: 9204

Try it with this job design.

Source (Dataset) --> CopyStage

Assert the Force property in the Copy stage.

I think you'll find that the Data Set is not the culprit here.