Search found 53125 matches

by ray.wurlod
Sat Mar 02, 2013 1:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: conceptual difference between partition and repartition
Replies: 2
Views: 1291

Partitioning occurs when the upstream stage is sequential and the downstream stage executes in parallel mode. Re-partitioning occurs when the upstream stage is executing in parallel mode and the downstream stage is executing in parallel mode, but specifies a different partitioning algorithm from tha...
by ray.wurlod
Sat Mar 02, 2013 1:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File rejects
Replies: 3
Views: 1318

Is this an interview question?

As a general rule strings are never rejected.

But you have not provided any information about Null Field Value property or the data values in the file, so a complete answer is clearly impossible.
by ray.wurlod
Sat Mar 02, 2013 1:43 pm
Forum: General
Topic: Workload Management
Replies: 4
Views: 2139

Welcome aboard.

There's not a whole lot available in 8.7. One approach that I have seen is the use of a before-job subroutine to lower the priority of a job (renice) if a parameter flag is set.
by ray.wurlod
Fri Mar 01, 2013 7:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can a field be defined Decimal(2,2) in the database?
Replies: 2
Views: 1253

Decimal(2,2) is not possible. Precision must be at least one greater than scale. So, yes, request the DBA to make the change.
by ray.wurlod
Fri Mar 01, 2013 7:21 pm
Forum:
Topic: How do you identify 'concept' terms in the Glossary?
Replies: 4
Views: 2380

We prefer to use a strategy that uses "general terms" category (with a small number of sub-categories), and make use of a custom property to classify the term further. We're also contemplating using labels for this or a similar purpose. Both custom properties and labels can be used as sear...
by ray.wurlod
Fri Mar 01, 2013 2:50 pm
Forum: General
Topic: Abort job if ran more than 30 minutes
Replies: 7
Views: 1589

Use a Constraint expression that tests how long it has been since the job started and send the row down an output link with a row count limit of 1. In a sequence remember the job start time using a User Variables activity and, at specific places in the sequence, compare this against current time. Ne...
by ray.wurlod
Fri Mar 01, 2013 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Occurs depending on issue
Replies: 3
Views: 1091

Can you post at least the relevant parts of your FD ?
by ray.wurlod
Fri Mar 01, 2013 2:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generic file compare using RCP
Replies: 5
Views: 1463

You can't have both.
If you want DataStage to compare specific columns, you have to name those columns (at least) and that, in turn, limits or rules out the use of RCP.
by ray.wurlod
Fri Mar 01, 2013 2:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Omit null columns in XML output
Replies: 9
Views: 3729

Increase the size of the Inter-Process Row Buffer so that it can contain at least one of your XML documents.
by ray.wurlod
Fri Mar 01, 2013 2:32 pm
Forum: General
Topic: Install datastage server on own pc
Replies: 3
Views: 1004

And even if there were you would need to be running Windows Server 2008R2 (assuming Information Server version 8.7 or later).
by ray.wurlod
Fri Mar 01, 2013 2:31 pm
Forum:
Topic: Metadata Interchange fails to locate Information Server Home
Replies: 5
Views: 3355

Also make sure that your Services tier machine (Linux) can "see" your client (Windows) machine; this means both resolving the machine name to an IP address as well as connecting.
by ray.wurlod
Fri Mar 01, 2013 4:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cluster and Grid information from configuration file?
Replies: 5
Views: 1905

In a grid the configuration file is usually a prototype, with placeholders such as $$Compute (a Compute node) and $$fastname (a node name) whose values are placed by negotiation with grid management software.
by ray.wurlod
Thu Feb 28, 2013 7:19 pm
Forum: General
Topic: Writing SQL Query as Source in DataStage
Replies: 12
Views: 12296

Even with generated SQL I place a simplified version of the SQL statement as an annotation on the design canvas itself (Courier new, colour royal blue, top, left, transparent, no border are my standards for these particular annoatations). Makes life so much easier when doing a walkthrough with DBAs.
by ray.wurlod
Thu Feb 28, 2013 7:16 pm
Forum: General
Topic: Problem with environment variables during promotion...
Replies: 8
Views: 2404

Corrupted how?

Incidentally, the special tokens for default values of environment variable parameters have "$" prefixes: $PROJDEF, $ENV and $UNSET.
by ray.wurlod
Thu Feb 28, 2013 3:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to datastage pass record between stage
Replies: 7
Views: 2031

With a buffer more than one row can be passed between stages. Think of it as a producer-consumer model - the producer stage is writing rows into the buffer as fast as it can; the consumer stage is reading from the buffer as fast as IT can. The buffer mechanism can resist input if it becomes too full.