Search found 53125 matches

by ray.wurlod
Thu Nov 26, 2009 10:42 pm
Forum: General
Topic: Trouble with Information Services Connection
Replies: 4
Views: 1372

31531 is the port number used by the ASB Agent. If this agent has stopped for some reason, the fix is usually to restart it. Check first that the WebSphere Application Server itself (default\server1) is still running.
by ray.wurlod
Thu Nov 26, 2009 7:59 pm
Forum: General
Topic: How can I acheive a count
Replies: 5
Views: 1739

Welcome aboard.

The option is to set the Aggregation Type property to "Count Rows". You then nominate the column on the output link that will receive the count in the Count Output Column property.
by ray.wurlod
Thu Nov 26, 2009 3:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: the record is too big to fit in a block
Replies: 12
Views: 12678

It may not be transport blocks you need to change. These are only used for internal transmission of fixed length records. It may be buffer sizes you need to tune. Be very, very careful with these - tuning them through environment variables affects every buffer (link) in the job. It may be better, if...
by ray.wurlod
Thu Nov 26, 2009 1:33 pm
Forum: General
Topic: Mind Your Language
Replies: 2
Views: 906

Mind Your Language

It would appear I'm not alone.
by ray.wurlod
Thu Nov 26, 2009 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Accessing Link Information for a job
Replies: 8
Views: 2198

Code -5 is DSJE.BADTYPE indicating (here) that the InfoType argument in DSGetStageInfo() is not recognized. This is because you used an underscore rather than a dot. The constant (given that the language here is DataStage BASIC) should be DSJ.STAGESTARTTIMESTAMP rather than DSJ_STAGESTARTTIMESTAMP (...
by ray.wurlod
Thu Nov 26, 2009 1:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert new rows(with the same key) breaks the run!
Replies: 7
Views: 9797

18 million keys is trivial for a hashed file to handle.
by ray.wurlod
Thu Nov 26, 2009 1:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to contact Section Leaders
Replies: 3
Views: 3883

Moderator: please move to parallel forum
by ray.wurlod
Thu Nov 26, 2009 1:13 pm
Forum: General
Topic: How to define Fixed Width Format for a Target File
Replies: 6
Views: 5141

The easiest way is while importing the table definition of that file (assuming it exists) or creating the table definition (assuming it doesn't exist). Record the width of each field, which is stored in the Display Width field.
by ray.wurlod
Thu Nov 26, 2009 4:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ETL error
Replies: 3
Views: 1762

Please describe the configuration file under which this job is running, in particular the number of nodes and whether the disk and scratchdisk resources are shared between nodes.
by ray.wurlod
Thu Nov 26, 2009 4:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Write to dataset failed
Replies: 13
Views: 5386

Arnd asked you to monitor the space (with df, but du may be better) while the job is running. Have you done that?
by ray.wurlod
Thu Nov 26, 2009 4:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Accessing Link Information for a job
Replies: 8
Views: 2198

Yes, for example here or here

And yes.
by ray.wurlod
Thu Nov 26, 2009 2:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Accessing Link Information for a job
Replies: 8
Views: 2198

I'd probably create an after-job subroutine to get all the stage/link row counts from the job and write them to the file whose pathname was given as the input argument (input values field).
by ray.wurlod
Thu Nov 26, 2009 2:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle reject in Join
Replies: 5
Views: 6171

There's no such thing as rejects from a join - there's only the result of the join. It's the same in DataStage as it is in SQL.
by ray.wurlod
Thu Nov 26, 2009 12:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage export types - pros and cons
Replies: 6
Views: 3261

None fail when the job is running, because all pick up only design time information. I prefer DSX over XML format when using DataStage/QualityStage Designer export, because it's the more compact format. You get ISX format if you use Information Server Manager for creating deployment packages ("...
by ray.wurlod
Wed Nov 25, 2009 11:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reference looup creation within same job
Replies: 1
Views: 982

Welcome aboard. As a general rule what you are trying to achieve is known as a "blocking operation" (the output can not be opened until the input is closed). Blocking operations are forbidden in parallel jobs, as they invalidate the pipeline mechanism. (You can use blocking operations in s...