Search found 53125 matches

by ray.wurlod
Wed Nov 03, 2010 12:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: create a file using sudo
Replies: 4
Views: 1849

Can you use an External Target stage to write the file via a sudo command?
by ray.wurlod
Wed Nov 03, 2010 12:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: InvocationID Propagation
Replies: 2
Views: 1326

Not automatically, but you can design it so that the invocation ID is propagated. (You may need to replicate the invocation ID as a parameter of the sequence to achieve this.)
by ray.wurlod
Wed Nov 03, 2010 12:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: QualityStage frequency for Vector column
Replies: 1
Views: 1159

QSfrq_pre_format operator does not support vector fields for interpretation

Perhaps you can unpack (normalize) the vector prior to generating match frequencies?
by ray.wurlod
Wed Nov 03, 2010 12:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job status information for multi instance Jobs
Replies: 2
Views: 2297

That (getting list of invocation IDs) can be done with the API without needing to access the repository directly. Use the DSGetJobInfo() function.
by ray.wurlod
Wed Nov 03, 2010 12:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unable to import file in required format
Replies: 8
Views: 2319

You will need to read the file as if it contains two fields with ":" as the delimiter then, in a Transformer stage, direct values into the appropriate columns depending on the value of the field name. Use stage variables so that you only change the affected column in each case. Set another...
by ray.wurlod
Wed Nov 03, 2010 12:19 am
Forum: IBM QualityStage
Topic: Custom rule sets
Replies: 31
Views: 10611

Re: Custom rule sets

kennyapril wrote:I need to do a batch job using custom rule sets...
Now, after my short response and Stuart's long one, are you SURE you want/need to build a custom rule set? As noted, you may be able to get away with overrides if you're in a name/address/area domain.
by ray.wurlod
Wed Nov 03, 2010 12:15 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Coding modulus (%)
Replies: 5
Views: 2532

Hmm. Use the functions list (one of the four tabs on the right hand side). You may need to subtract the integer value of the division from the division or some such.
by ray.wurlod
Tue Nov 02, 2010 2:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer derivation syntax is need for my requirement
Replies: 3
Views: 1551

What happens when you right-click on the expression and choose "Validate" from the menu?
by ray.wurlod
Tue Nov 02, 2010 2:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How would you "over-partition" your data?
Replies: 7
Views: 2318

Not sure what "over partition" means in this context. Can you be more specific?
by ray.wurlod
Tue Nov 02, 2010 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation Error
Replies: 6
Views: 2497

It should be easy to pick - it should be red.
by ray.wurlod
Tue Nov 02, 2010 2:35 pm
Forum: General
Topic: email notification
Replies: 29
Views: 6471

Try it with forward slashes.

Code: Select all

type N:/DSLink127/outputseq15.txt 
by ray.wurlod
Tue Nov 02, 2010 2:32 pm
Forum: IBM QualityStage
Topic: Custom rule sets
Replies: 31
Views: 10611

In what way "custom"? If you're interested in adapting one of the existing out-of-the-box domain-specific rule sets, you may be able to get away with using overrides. Next easiest is copying the rule set and modifying, say, the classification table. Modifying the pattern-action language re...
by ray.wurlod
Tue Nov 02, 2010 6:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Utility run job in parallel
Replies: 3
Views: 2616

Re: Utility run job in parallel

asaf_arbely wrote:is there any parallel routine that runs a job from another job ?
No. While you could write your own, you would be careful about what might happen were that routine to be invoked from multiple nodes. In my opinion your requirement smacks of Bad Idea.
by ray.wurlod
Tue Nov 02, 2010 6:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to implement Reject logic
Replies: 13
Views: 6308

marpadga18 wrote:Need some condition in transformer stage to reject the rows if "|" are less than 5 so that i can reject that row?
Constraint expression of

Code: Select all

Count(InLink.TheString, "|") >= 5
by ray.wurlod
Tue Nov 02, 2010 6:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error load data from oracle to Sybase
Replies: 2
Views: 2321

Also check what time constraints exist at your site for executing the particular routine you've invoked that threw the message about being called at an illegal time.