Search found 53125 matches

by ray.wurlod
Wed Jan 26, 2011 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataset data file
Replies: 2
Views: 1495

Re: dataset data file

I did go through the Parallel Job developer guide but did not find any thing related to the format of data in data file. Look again. The section (I think it's in Chapter 2) is called something like "data types in DataStage" for example you learn that a Date requires four bytes and a times...
by ray.wurlod
Wed Jan 26, 2011 3:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Num() funciton gives the warning "tfmDummy1,0: Null str
Replies: 5
Views: 1801

In that case don't pass NULL to the Num() function.

Code: Select all

If IsNull(InLink.TheValue) Then SetNull() Else Num(InLink.TheValue)
by ray.wurlod
Wed Jan 26, 2011 3:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job using Merge stage is failing after n number of records
Replies: 5
Views: 2290

Looking more and more like the 2GB barrier. Merge stage works by creating a hashed file under the covers. As far as I'm aware, unless you have 64BIT_FILES set, there's no option for having that hashed file created with 64-bit addressing.
by ray.wurlod
Wed Jan 26, 2011 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: row count
Replies: 21
Views: 7225

The error message is because the variable called k is not set in every path through the code, and has not been given an initial value. Before/after subroutines only ever have two arguments; this is not something that you need to check.
by ray.wurlod
Wed Jan 26, 2011 3:29 pm
Forum: General
Topic: QC environment in ETL
Replies: 2
Views: 1822

In a word, "management". You need to manage (co-ordinate) your QC environment.

As far as I am aware, there are no standards for this.
by ray.wurlod
Wed Jan 26, 2011 3:27 pm
Forum: General
Topic: Suspend Datastage Jobs
Replies: 6
Views: 2518

47shailesh wrote:#Is it possible to set the status of job from RunOk to Running and later reset the status again to RunOk again.
Not legally.
47shailesh wrote:#Or is it possible to disable the jobhandler for few jobs, such that no one can attach the job
Only by stopping the engine.
by ray.wurlod
Tue Jan 25, 2011 8:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: calling environmental varible in transformer stage
Replies: 6
Views: 2070

... only if they're in the job as parameters.

GetEnvironment() can reference any environment variable available to the process.
by ray.wurlod
Tue Jan 25, 2011 8:37 pm
Forum: IBM QualityStage
Topic: Rule set issue
Replies: 9
Views: 3988

Overrides would be made against the rule set you're currently using, I guess USNAME.

To create a custom rule set the easiest way is to copy an existing one. Then modify the classification table, the dictionary and the pattern action language to suit your requirements.
by ray.wurlod
Tue Jan 25, 2011 6:35 pm
Forum: Site/Forum
Topic: Status of Posts
Replies: 2
Views: 3413

Status of Posts

When I view posts in DSXchange using Internet Explorer or Firefox the "unread" (orange) icon changes to "read" (blue).

But, when I use Safari as my browser, they remain "unread", which makes life difficult.
by ray.wurlod
Tue Jan 25, 2011 6:33 pm
Forum: General
Topic: Suspend Datastage Jobs
Replies: 6
Views: 2518

There is no mechanism for suspending, or "pausing", an already-running DataStage job.

You could, if you can make a good case, submit that as an enhancement request.
by ray.wurlod
Tue Jan 25, 2011 6:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Questions regarding Hash files and hash file stage
Replies: 54
Views: 42070

That design operates as two jobs, even though it's one. For a sufficiently small reference data set the hashed file write cache and read cache can be used, so that lookups are performed in memory, which should be faster than performing them to disk.
by ray.wurlod
Tue Jan 25, 2011 6:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How Can I validate two times One Row??
Replies: 6
Views: 2578

Yeah, link collector. But it performs the same function as the parallel Funnel stage that I clearly had in mind.
by ray.wurlod
Tue Jan 25, 2011 6:27 pm
Forum: General
Topic: Designing a restartable sequence that stops after a warning
Replies: 5
Views: 1749

To be honest, I'm surprised that running a warning trigger into a Terminator does not do what you specify. Does your Terminator activity wait for all running jobs to finish?
by ray.wurlod
Tue Jan 25, 2011 6:25 pm
Forum:
Topic: Lineage + binding
Replies: 26
Views: 16580

Just curious, how can database NOT be specified in a Connector?
by ray.wurlod
Tue Jan 25, 2011 6:24 pm
Forum: IBM QualityStage
Topic: Rule set issue
Replies: 9
Views: 3988

Without creating a custom rule set or a really comprehensive set of overrides, not really. You could look at MNS but that's mainly for addresses. It gets trickier, for example EVELYN is as likely to be a male name as a female name in GBNAME but is always female in USNAME rule set. And in the AUNAME ...