Search found 53125 matches

by ray.wurlod
Tue Oct 31, 2006 3:09 pm
Forum: IBM QualityStage
Topic: Can QualityStage read dataset files?
Replies: 11
Views: 3864

It's separately purchased, as far as I am aware. Or it may come with the QualityStage Real Time components. Unfortunately I can not find any public information quickly; the only information on IBM's web site seems to be hidden with PartnerWorld. Maybe someone here who is an IBM business partner can ...
by ray.wurlod
Tue Oct 31, 2006 2:38 pm
Forum: IBM QualityStage
Topic: Can QualityStage read dataset files?
Replies: 11
Views: 3864

No, what I was talking about is using the QualityStage plug-in to invoke the QualityStage jobs. As soon as you talk about writing to a file, you are losing the possibility of retaining partition parallelism.
by ray.wurlod
Tue Oct 31, 2006 2:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Import Remote UV File Definition
Replies: 1
Views: 759

Welcome aboard! :D You have some badly constructed dictionary items in your UniVerse (hashed) files. One has a "D" in field #8 of a "D" or "I" type field. Another has "M" in field #8. It may be that your UniVerse application is using field numbers between 8 and 20 in contravention of advice given in...
by ray.wurlod
Tue Oct 31, 2006 2:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can QualityStage read dataset files?
Replies: 1
Views: 508

See response in QualityStage forum.
by ray.wurlod
Tue Oct 31, 2006 2:13 pm
Forum: IBM QualityStage
Topic: Can QualityStage read dataset files?
Replies: 11
Views: 3864

Are you running QualityStage independently or calling from DataStage? At the current version, you must use DataStage to read the Data Set and stream the data through QualityStage. Obviously you set up your QualityStage jobs to execute in Parallel Extender mode under this scenario. In the next versio...
by ray.wurlod
Tue Oct 31, 2006 12:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Self Stopping job Sequencer
Replies: 1
Views: 890

Should not be necessary, since every DataStage job processes invokes dsenv script automatically.
by ray.wurlod
Tue Oct 31, 2006 9:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in logging in datastage components
Replies: 2
Views: 845

Have you searched for related topics? I'm sure this question has been answered in the past.
by ray.wurlod
Tue Oct 31, 2006 8:56 am
Forum: General
Topic: Training Curriculum
Replies: 8
Views: 4831

Fundamentals of EE is my curriculum but cut back to three days.
by ray.wurlod
Tue Oct 31, 2006 8:03 am
Forum: General
Topic: Training Curriculum
Replies: 8
Views: 4831

Certified.
Certifiable.
Something like that. :lol:
by ray.wurlod
Tue Oct 31, 2006 7:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No of servers vs record volume
Replies: 7
Views: 1574

Ten byte rows or ten million byte rows?
by ray.wurlod
Tue Oct 31, 2006 7:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: adding column names to reject file
Replies: 15
Views: 3482

That's correct but there was insufficient information in the original post for us to discern what you were trying to achieve.
by ray.wurlod
Tue Oct 31, 2006 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Avoid 'Run Stop' even on fatal Error
Replies: 5
Views: 1263

There is ALWAYS a way in server jobs to run without creating fatal errors from the job design, if you are not using row buffering. I include that caveat (a) because you do not have control of the ipc mechanism and (b) because theverma seems infatuated with using the IPC stage. Environmental fatal er...
by ray.wurlod
Tue Oct 31, 2006 7:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcgetnext() Error
Replies: 4
Views: 1086

Does the error go away if you remove the IPC stage from the job and disable inter-process row buffering? If so, ask yourself why you have the IPC stage at all. If you believe you really need it, then you may seek to tune its properties, particularly the timeout period, or to investigate possible cau...
by ray.wurlod
Tue Oct 31, 2006 7:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance issues with C sql
Replies: 3
Views: 613

The overhead of fopen() is large. Don't open the file every time. Keep it open while the job is running, perhaps using a static file handle, and append new lines to it.

Of course, if you have multiple concurrent writers this is not a valid approach.
by ray.wurlod
Tue Oct 31, 2006 7:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oconv and iconv
Replies: 6
Views: 2138

Open Help from Designer.
Type in the topic BASIC Tasks.
Choose Data Formatting from the topic list.
Choose Oconv or Iconv from there.
Read and absorb.