Search found 53125 matches

by ray.wurlod
Fri Nov 16, 2007 4:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: working with sequential file
Replies: 3
Views: 1634

Prove your design. How many columns in the record schema, and how many fields appear in your output file? What happens if you change the Final Delimiter character (just for the test) to something else, say ";".
by ray.wurlod
Fri Nov 16, 2007 4:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how many process will create
Replies: 5
Views: 1419

Thirteen.

Unless there is operator combination or some other optimization happening.
by ray.wurlod
Fri Nov 16, 2007 4:33 am
Forum: General
Topic: Datastage schedule seqeuncer
Replies: 11
Views: 9243

Definitely not. 50 jobs might process one row each or might process crores of rows each. You can not make that decision on something as arbitrary as simply "number of jobs".

And please note, as Craig pointed out, there is no such thing as a DataStage Scheduler
by ray.wurlod
Fri Nov 16, 2007 4:29 am
Forum: IBM QualityStage
Topic: multi national address data
Replies: 12
Views: 3037

Test it with US-only data. Test it with COUNTRY rule set only. Run just the US data through USPREP rule set before applying the others. Verify that that works, then we'll investigate further.
by ray.wurlod
Fri Nov 16, 2007 12:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: working with sequential file
Replies: 3
Views: 1634

Set the Final Delimiter property value to None.

If you have only one link in the job, you will need to put some innocuous stage (such as a Copy stage) between the two Sequential File stages.
by ray.wurlod
Fri Nov 16, 2007 12:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To make DB2 read in parallel
Replies: 4
Views: 1417

No.

You use a DB2 Enterprise stage for that.
by ray.wurlod
Fri Nov 16, 2007 12:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate multiple output files for a single output stage
Replies: 3
Views: 2434

Job sequence.
User variables activity to convert the list to delimited list.
Start Loop activity using user variable to control list.
It's been explained before. Search.
by ray.wurlod
Fri Nov 16, 2007 12:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage connection error
Replies: 1
Views: 920

Welcome aboard. DataStage clients have a built-in limit to how long they may wait to establish a connection. So do most internet browsers. This error usually occurs when there is some issue with the network between the client and the server - a defective modem or NIC, or port #31538 not enabled thro...
by ray.wurlod
Fri Nov 16, 2007 12:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How I can get a Report which lists the status of all Jobruns
Replies: 11
Views: 3970

Of course there is. But the routine does not ship with the product.

There are some who could be hired to construct one for a fee.
by ray.wurlod
Fri Nov 16, 2007 12:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Projects getting Locked after Parallel upgrade
Replies: 3
Views: 972

Looks like you need to reset the tunnel connection to a longer inactivity timeout interval.
by ray.wurlod
Thu Nov 15, 2007 10:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Standardizing Japanese data with QualityStage
Replies: 1
Views: 637

No problems in version 7.x, provided you get the NLS map correct.
by ray.wurlod
Thu Nov 15, 2007 10:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dyanamic RDBMS
Replies: 4
Views: 1127

I avoid user-defined SQL wherever possible, as it's one extra level of maintenance. The only time I've ever had to use it was for a UNION.
by ray.wurlod
Thu Nov 15, 2007 10:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: white spaces in xml
Replies: 9
Views: 1945

Not easy. Can you pre-process to replace them with non-breaking space (&NBSP;) characters?
by ray.wurlod
Thu Nov 15, 2007 8:21 pm
Forum: General
Topic: Talking to SQL Server 2005 with DataStage Server 6.0
Replies: 5
Views: 2098

That's essentially my thoughts, with the caveat given in my earlier post.
by ray.wurlod
Thu Nov 15, 2007 5:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join partitioning requirement
Replies: 1
Views: 700

You need to partition on both key columns, so that for any value of the key [L1,D1] all corresponding values will be found on the same partition. That said, if you partition one input on [L1,D1] and one on [L1] alone, then you would still achieve the principle of key adjacency, because there are no ...