Search found 53125 matches

by ray.wurlod
Wed Feb 27, 2008 5:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: [b]shall we use the peek stage as a target[/b]
Replies: 7
Views: 2171

The Peek stage is intended to capture a sample of rows. If used as a target with no output link, all it can do is to capture that sample. It will write those few records into entries in the job log.
by ray.wurlod
Wed Feb 27, 2008 5:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating categories
Replies: 7
Views: 1680

Use DataStage/SQL to insert new category records in DS_JOBS. From the operating system use the dssh command, and enclose the SQL in double quotes. Category records have a key of \\\category, have NRO in the READONLY column and the category in the CATEGORY column. Some examples, for the categories D...
by ray.wurlod
Wed Feb 27, 2008 5:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find Port number for DataStage server in UNIX
Replies: 5
Views: 8039

The port number is 31538 for version 6.0 and later, 31438 for version 5.2 and earlier. You can find this with a command such as

Code: Select all

grep dsrpc /etc/services


Other port numbers are used for parallel jobs but, since you asked in the server forum, the above is a complete answer.
by ray.wurlod
Wed Feb 27, 2008 5:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: [b]shall we use the peek stage as a target[/b]
Replies: 7
Views: 2171

If you like. It's a good technique when incrementally developing a job. The Peek stage will eat all the rows you send to it, and send a sample of them to events in the job log.
by ray.wurlod
Wed Feb 27, 2008 5:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Status:Aborted-Showing only warning
Replies: 5
Views: 1326

What's your warnings limit? A value of 1 could certainly manifest this situation.
by ray.wurlod
Wed Feb 27, 2008 5:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with reading a EBCDIC Cobol file - Complex file stage
Replies: 32
Views: 10490

It may mean that your conversion from EBCDIC to ASCII was not done correctly. You don't convert binary (COMP) columns, for example.
by ray.wurlod
Wed Feb 27, 2008 5:19 am
Forum: General
Topic: Export, import, delete an empty job
Replies: 15
Views: 3020

There's nowhere else that a job name is stored, unless the CATEGORY index on DS_JOBS is out of date. But then a query on DS_JOBS would return strange results - errors maybe - if constrained on CATEGORY. I've run out of ideas on this one. If I get time I'll try to reproduce what you've done with an e...
by ray.wurlod
Wed Feb 27, 2008 4:42 am
Forum: General
Topic: Export, import, delete an empty job
Replies: 15
Views: 3020

Brain fart. Sorry.

Code: Select all

SELECT NAME, OBJIDNO FROM DS_JOBOBJECTS WHERE OBJTYPE = 'J' AND NAME = 'dummy';
by ray.wurlod
Wed Feb 27, 2008 4:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: month from date
Replies: 5
Views: 1943

ONLY if it is a string. If it is a date, you need to apply a date to string conversion function first.

There are other functions available that will extract date components directly from dates.
by ray.wurlod
Wed Feb 27, 2008 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IIS Configurations on AIX V 5.3
Replies: 1
Views: 1018

Define performance. Also, what network bandwidth is available between the putative multiple systems?
by ray.wurlod
Wed Feb 27, 2008 4:33 am
Forum: General
Topic: split the names
Replies: 6
Views: 1267

Transformer or Filter stage with 26 outputs (one for each letter) and one rejects/otherwise link.

A Switch stage is not appropriate; it switches on specific values, so you might need 140000 separate switch conditions!
by ray.wurlod
Wed Feb 27, 2008 4:31 am
Forum: General
Topic: Export, import, delete an empty job
Replies: 15
Views: 3020

Yes, but not in every record type. The record that holds the job name has as its key J\nnnn\ROOT where nnnn is the job number. The job name is in field #3, which has the column name NAME. But, for a clean removal, you must remove all objects that are part of the job. You can find the name and job nu...
by ray.wurlod
Wed Feb 27, 2008 3:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal to Date Conversion
Replies: 3
Views: 2301

Do you purport to represent Altis? If not, please choose a different nick.
If so, please endeavour to use a professional standard of written English: the second person personal pronoun is spelled "you". DSXchange is not a mobile phone. Sentences ought really not to begin with "Like, ".
by ray.wurlod
Wed Feb 27, 2008 3:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with reading a EBCDIC Cobol file - Complex file stage
Replies: 32
Views: 10490

You might have a whole lot of "@" characters, you may have a whole lot of NUL characters (0x00). Switch to hex mode to determine which it is.
by ray.wurlod
Wed Feb 27, 2008 3:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: consuming MQ messages.................
Replies: 5
Views: 1335

Connector is not available until version 8.x.