Search found 53125 matches

by ray.wurlod
Wed Sep 17, 2008 5:28 pm
Forum: IBM QualityStage
Topic: Rule Sets in Quality Stage
Replies: 6
Views: 2332

The User Guide does a good job of describing what's in a rule set. Start by reading that, in conjunction with inspecting the files associated with an existing rule set (which you can do from the Designer). DSXchange Learning Center is currently developing some materials relating to QualityStage rule...
by ray.wurlod
Wed Sep 17, 2008 3:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator stage
Replies: 5
Views: 2779

    SELECT MIN(datecolumn),MAX(datecolumn) FROM schema.tablename;
by ray.wurlod
Wed Sep 17, 2008 3:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Listing Stages From Executable Of A DataStage Job
Replies: 8
Views: 4030

It's a value mark, its ASCII code point is 253 (decimal). You can use tr to convert it to some other character, such as a comma. \375 is the octal equivalent. \xFD is the hexadecimal equivalent.
by ray.wurlod
Wed Sep 17, 2008 3:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete Multiple Datasets
Replies: 5
Views: 2342

How about a shell script that loops through the file names generated by the regular expression and issues the orchadmin against each? (Yes, I know you're on Windows, and I also know that MKS Toolkit installs with version 8.0 on Windows, so you can use a shell script.) for filename in /IS_Projects/DS...
by ray.wurlod
Wed Sep 17, 2008 3:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scientific Notation conversion
Replies: 5
Views: 5425

DataStage can handle valid scientific notation numbers provided that the exponent is not more than 38.
by ray.wurlod
Wed Sep 17, 2008 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem running a job by scheduling
Replies: 8
Views: 4260

That's Windows, not DataStage or Oracle.
by ray.wurlod
Wed Sep 17, 2008 3:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Root created and cant delete it
Replies: 9
Views: 4837

It won't really help unless we know the provenance of DStageWrapper. Does it come with DataStage, does it come from IBM, does it come from your particular reseller, was it written in-house? What's in it?
by ray.wurlod
Wed Sep 17, 2008 7:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Taking Datastage TRUE COPY
Replies: 10
Views: 2920

Or port #31538 is blocked by firewall software.
by ray.wurlod
Wed Sep 17, 2008 7:07 am
Forum: General
Topic: Transformer Performance
Replies: 5
Views: 1889

Your reviewer is basing these calls on outdated knowledge.

Demand proof that the Transformer stage is more burdensome that the other stage types. In 7.5 they did a lot of work on the Transformer stage; under some circumstances it can be more lightweight than other stage types.
by ray.wurlod
Wed Sep 17, 2008 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running Shell Script and DS Routine in after job
Replies: 1
Views: 774

Yes but you have to write your own after-job subroutine that encapsulates both. Use DSExecute() to invoke the shell script.
by ray.wurlod
Wed Sep 17, 2008 6:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobcontrol Reset Failure
Replies: 4
Views: 1616

The aborted job is "attach locked". You need to detach then re-attach it before you can reset it.

Would it not be easier to call DSPrepareJob() before attempting to run the job? This is the function behind the "reset if required, then run" functionality in job sequences.
by ray.wurlod
Wed Sep 17, 2008 6:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Taking Datastage TRUE COPY
Replies: 10
Views: 2920

Have you tried to start DataStage on the DR server? Does dsrpcd start then stop, or not start at all? Try starting dsrpcd in debug mode.
by ray.wurlod
Wed Sep 17, 2008 6:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wait function / Sleep function
Replies: 2
Views: 1277

SLEEP seconds

SLEEP hh:mm

NAP milliseconds

Each of these is a statement, not a function. The hh:mm format for SLEEP uses a 24-hour clock, and causes the process to sleep until that time, or not to sleep at all if that time has already passed.
by ray.wurlod
Wed Sep 17, 2008 5:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSSetparam
Replies: 2
Views: 1025

Re: DSSetparam

myukassign wrote:Can I pass job parameters as the parameter value in this function?

No.

You can pass the value of a job parameter, but you can not pass a reference to a job parameter.
by ray.wurlod
Wed Sep 17, 2008 5:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Summation in transformer stage
Replies: 5
Views: 1529

You're all crazy! Use an Aggregator stage to sum the column. Specify no grouping columns. It will use no memory (apart from the actual running sum) and be very fast. And it will require no "programming".