Search found 53125 matches

by ray.wurlod
Mon Jun 05, 2006 4:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How many simultaneous database connections won't hurt?
Replies: 3
Views: 970

Ask your DBA. If the DBA has only configured a maximum of 20 listeners (connections), then you won't be able to use more than that number. Within that limit, it depends on what you're loading the database server with - are you issuing 20 variants of "the query from hell"? Others have noted that the ...
by ray.wurlod
Mon Jun 05, 2006 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading from excel worksheet
Replies: 4
Views: 1663

You can create a small Windows application to dump the worksheet in CSV format (and, perhaps, to initiate a file transfer), and invoke that remotely from the UNIX machine. Otherwise, you need to acquire a UNIX-based ODBC driver for Excel.
by ray.wurlod
Mon Jun 05, 2006 4:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs and Sequences
Replies: 3
Views: 920

There are very few DS_... tables (the actual number depends on what edition of DataStage you have installed, but it's fewer than ten in most sites, not counting the per-job DS_TEMP tables). The information you require is in DS_JOBS and DS_JOBOBJECTS. Search the forum, or download Kim Duke's utilitie...
by ray.wurlod
Mon Jun 05, 2006 4:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to find out howmany records were processed and rejected
Replies: 35
Views: 6542

My reqirement is to do everything in one job. Why? Sometimes (often) a more modular approach is far easier to maintain. Take some advice from an experienced developer - this (everything in one job) should never be a requirement. If "they" try to impose it, challenge them to provide a good reason. I...
by ray.wurlod
Mon Jun 05, 2006 4:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can we join the tables from diperate source databases
Replies: 3
Views: 1108

Provided you only want inner or left outer joins, then you can use the conventional lookup mechanism in DataStage, using a Transformer stage. The stream link can come from one data source, the reference input link from the other. Obviously you need to generate a suitable reference key expression, on...
by ray.wurlod
Mon Jun 05, 2006 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Guidlines needed - DataStage
Replies: 5
Views: 1689

Etiquette Note
We do not do "urgent" here. This is an all-volunteer site; no poster gets paid for posting. If you want "urgent" sign up with your support provider for premium service, and learn the true cost of urgent.


Lack of planning on their part does not constitute an emergency on ours.
by ray.wurlod
Mon Jun 05, 2006 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic for splitting one field value on diff basis
Replies: 1
Views: 1309

Create sufficient columns to handle the maximum possible number of product code and product versions. Based on the size of the input columns, this won't be too many, perhaps 10. Split the incoming pipe-delimited fields into separate columns, perhaps using a Field() function. Then run this wide colum...
by ray.wurlod
Mon Jun 05, 2006 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between DSLogfatal and DSStopJob
Replies: 14
Views: 5503

There is an argument never to use any of these, but to maintain control and propagate warnings up to the master control job sequence and handle them there. You can build in enough logic to ensure that the typical abort situations do not even occur.
by ray.wurlod
Mon Jun 05, 2006 3:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rank like functionality in DataStage
Replies: 4
Views: 2376

Make sure also that you partition your data such that any one customer's data can appear only on one processing node.

I am uncertain about how to do ranking in DataStage, as I normally rely upon the database RANK function to perform this task.
by ray.wurlod
Mon Jun 05, 2006 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Question
Replies: 5
Views: 1467

DataStage clients connect via a proprietary protocol called DS Objects. The dsprc daemon listens on port number 31538 (or, if you are running a version earlier than 6.0, on 31438). Disabling telnet (port 23) will not affect the operation of DataStage. If you still want to telnet to the DataStage ser...
by ray.wurlod
Mon Jun 05, 2006 2:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I-DESCRIPTOR
Replies: 4
Views: 1016

Yes it's an old post. However, wearing another hat, I have just re-worked this document which may assist anyone wanting to create I-descriptors (or other UniVerse file dictionary items) in the future. There's probably too much there for DataStage, but too much is probably better than not enough.
by ray.wurlod
Mon Jun 05, 2006 1:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unable to create XML document
Replies: 7
Views: 2087

How do you know the document has not been created? How are you attempting to create it, and where? Are you using a default style sheet, one created by importing metadata, or a custom style sheet? What stage type(s) are you using? Some XML documents (such as during compilation of a job sequence, or r...
by ray.wurlod
Mon Jun 05, 2006 1:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting User Role - Warning Message
Replies: 1
Views: 749

Probably not all users having read permission to the hidden files such as developer.adm and/or operator.adm on the server.
by ray.wurlod
Mon Jun 05, 2006 1:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can someone explain me the datastage architecture clearly?
Replies: 9
Views: 5446

You might find this post illuminating. :idea:

Conversion to HTML has disrupted some of the graphics slightly - this is not my fault!

This presentation is taken from one of my training classes, so the answer to your next question is "only in exchange for money".
by ray.wurlod
Mon Jun 05, 2006 1:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel for Windows ?
Replies: 3
Views: 1068

Yes.

Or, more precisely, no.

A sequencer is that component in a job sequence that makes an "any or all inputs have fired" decision in a job sequence.

The term you needed in your question was "job sequence", not "sequencer".