Search found 53125 matches

by ray.wurlod
Thu Dec 18, 2008 5:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob -logdetail : segmentation fault coredump
Replies: 1
Views: 1253

How many environment variables do you have set?
by ray.wurlod
Thu Dec 18, 2008 5:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs Got Too Slow Suddenly
Replies: 1
Views: 719

Only if you can tell us what changed in the system. Clearly "nothing" is not the correct answer. You have some detective work to do.
by ray.wurlod
Thu Dec 18, 2008 5:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of records
Replies: 7
Views: 1811

Ceil() is for parallel jobs only.

Do you need this count before the job runs, or as a result from the DataStage job?

In the first case get the result of wc -l pathname and subtract 2.
In the second case get the last value of @INROWNUM and subtract 2. The Aggregator stage can give a Last value.
by ray.wurlod
Thu Dec 18, 2008 5:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server jobs vs parallel jobs
Replies: 6
Views: 2364

Good luck. There are many situations where server jobs are faster (finish sooner) than parallel jobs implementing the same logic. Parallel jobs will typically win if the volume of data to be processed is huge and can be processed truly in parallel (for example using Data Sets rather than Sequential ...
by ray.wurlod
Thu Dec 18, 2008 5:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fault Type 11
Replies: 6
Views: 1727

VLIST is a diagnostic tool for working with DataStage BASIC code. There is no way to "implement it in your scenario".
by ray.wurlod
Thu Dec 18, 2008 5:03 am
Forum:
Topic: Deleted
Replies: 4
Views: 1625

This is not a metadata question. It is a technique question. It should be posted in the forum appropriate to job type (server or parallel). Metadata Workbench is not DataStage. This forum is for Metadata Workbench questions.
by ray.wurlod
Thu Dec 18, 2008 5:03 am
Forum:
Topic: Deleted
Replies: 2
Views: 1104

This is not a metadata question. It is a technique question. It should be posted in the forum appropriate to job type (server or parallel). Metadata Workbench is not DataStage. This forum is for Metadata Workbench questions.
by ray.wurlod
Thu Dec 18, 2008 5:00 am
Forum:
Topic: Deleted
Replies: 1
Views: 1030

This is not a metadata question. It is a technique question. It should be posted in the forum appropriate to job type (server or parallel). Metadata Workbench is not DataStage. This forum is for Metadata Workbench questions.
by ray.wurlod
Wed Dec 17, 2008 6:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reguler expression substitution
Replies: 8
Views: 3133

No, those ones would be replaced by something like "#@!&!"
:wink:
by ray.wurlod
Wed Dec 17, 2008 6:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fault Type 11
Replies: 6
Views: 1727

Yes it can. A segmentation violation can occur for many causes, most of which your search would have revealed. If any of these causes occurs in future (for example an attempt to load 15 characters into a Char(12) field) then you will get a segmentation violation.
by ray.wurlod
Wed Dec 17, 2008 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do I suppress a warning message?
Replies: 5
Views: 4213

Yes, using a message handler.
by ray.wurlod
Wed Dec 17, 2008 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Output stage! Help needed...
Replies: 9
Views: 2474

chulett wrote:Hell, it takes me longer than that to come up with a new job's name.
Methinks you need simpler job naming standards.
by ray.wurlod
Wed Dec 17, 2008 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: X9.37 data format load using Datastage
Replies: 1
Views: 1481

Are these "image" fields binary? That may cause some issues. Also, what are the numbers? If these are COBOL-style level numbers, you have an ugly structure with which to deal, though DataStage can manage it.
by ray.wurlod
Wed Dec 17, 2008 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Message_handler_Issue
Replies: 4
Views: 3546

You can not demote/suppress based on anything but message ID.

Therefore it looks like you are going to need to address the cause of the warnings; check for RI constraint violations before attempting to load data.