Search found 53125 matches

by ray.wurlod
Fri Jul 08, 2011 7:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning while updating into SQL server table
Replies: 5
Views: 1846

Those are not warnings. Please post the actual warnings (they have yellow or red icons in the log).
by ray.wurlod
Fri Jul 08, 2011 7:08 pm
Forum: General
Topic: help required in routine
Replies: 40
Views: 12214

If you're reading the detail of each event anyway, simply exit the loop after you encounter the "job starting" event.

But you still haven't really told us (in English) what you're trying to accomplish. That is, a specification for the routine, and where you intend to use it.
by ray.wurlod
Fri Jul 08, 2011 7:07 pm
Forum: General
Topic: Need help with dsjob command
Replies: 4
Views: 2015

Option -warn 0 disables abort on warning count altogether.

I counsel against using this. In fact, I strongly advise creating jobs that don't generate warnings at all.
by ray.wurlod
Fri Jul 08, 2011 7:03 pm
Forum: IBM QualityStage
Topic: Error in Match Reference Job
Replies: 9
Views: 4723

Unblocked that one, since I'm asking questions rather than offering premium advice.
by ray.wurlod
Fri Jul 08, 2011 7:01 pm
Forum: IBM QualityStage
Topic: Matching
Replies: 5
Views: 2290

Depends how your cutoffs are set. On your choices of blocking fields and matching rules, these will be quite close, but have different match weights. You have a number of choices. For example, you could make GenderCode a blocking field, or make GenderCode subject to special variable handling (critic...
by ray.wurlod
Fri Jul 08, 2011 6:55 pm
Forum: IBM QualityStage
Topic: Error in Match Reference Job
Replies: 9
Views: 4723

MatJoinOp is the operator that looks after the join on the combinations of blocking fields from the two sources. I presume you have specified these correctly, since the Match Designer won't really let you do otherwise. Is there any more detail to the error message? Might there be null values in the ...
by ray.wurlod
Fri Jul 08, 2011 6:53 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: What is the process of Datastage TX and Information analyzer
Replies: 1
Views: 7815

Why did you "decide to use DataStage TX"? Are you aware that there is no longer a product of this name? The transformation extender technology is now marketed by IBM under the WebSphere brand.
by ray.wurlod
Thu Jul 07, 2011 7:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ^@ is ASCII NULL character
Replies: 4
Views: 2231

Where and how have you set $APT_STRING_PADCHAR ?

The trailing null characters may actually be stored in the DB2 table. How did these values get populated (DataStage or some other application?). If they are already in there, then a Trim() or Convert() function would be a good way to eliminate them.
by ray.wurlod
Thu Jul 07, 2011 7:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Line Breaks in the flat files
Replies: 7
Views: 3170

Is there no data governance at all where you are? You simply can NOT unilaterally remove or change your client's data without approval. There are plenty of ways of doing so, as a search of DSXchange will reveal, but I want to be assured that you have your clien't permission to effect changes in thei...
by ray.wurlod
Thu Jul 07, 2011 7:36 pm
Forum: General
Topic: Server Code: Getting Different job name
Replies: 3
Views: 1062

hJob is the handle to the job, not the job name.

You can not use hJob as an argument to DSAttachJob() function.

The job name is retrieved from hJob using the DataStage API function DSGetJobInfo().
by ray.wurlod
Thu Jul 07, 2011 7:32 pm
Forum: General
Topic: Sequence not running jobs in parallel
Replies: 10
Views: 4104

Don't know. What does the Job Control code reveal? (I'm not at a site where DataStage is installed at the moment - I'm preparing to do the installation.) That said, I expect that it's always been that way. As with shell scripts, command execution is synchronous. The script (or sequence) waits for th...
by ray.wurlod
Thu Jul 07, 2011 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Line Breaks in the flat files
Replies: 7
Views: 3170

There ARE linefeeds in your data. Live with it.

Check with the data owners before doing anything radical like changing their data.
by ray.wurlod
Thu Jul 07, 2011 3:13 pm
Forum: General
Topic: help required in routine
Replies: 40
Views: 12214

You overwrite vEventDetail each iteration through the loop, but don't call DSSentMail() till you exit the loop. Why don't you specify in English what you want to achieve?
by ray.wurlod
Thu Jul 07, 2011 3:07 pm
Forum: General
Topic: login and logout logs in datastage server
Replies: 3
Views: 1244

Every project has a VOC, and it's a hashed file not a regular file so you can't edit it with a standard editor - you need to use something like the UniVerse line editor ED. Your question suggests that you should hire someone experienced - if you get this process wrong, you render your project unusab...
by ray.wurlod
Thu Jul 07, 2011 3:04 pm
Forum: General
Topic: Using $Counter in ExecCommand
Replies: 5
Views: 2256

Converting the newlines gives me a delimited list that the StartLoop activity can use easily.