Search found 53125 matches

by ray.wurlod
Fri Dec 23, 2011 9:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Validate Rule
Replies: 6
Views: 2577

Output of the join will be up to 150 rows for each left input row. So you call the routine that many times from a Transformer stage, each time returning 0 (success) or 1 (failure). Sum these; if the sum is non-zero at least one rule was violated. Note that this is a difficult task to achieve with a ...
by ray.wurlod
Fri Dec 23, 2011 9:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deletion of Files
Replies: 5
Views: 2699

Does the user have the "log in as a batch job" right?
by ray.wurlod
Fri Dec 23, 2011 9:44 pm
Forum: General
Topic: DATASTAGE REPOSITORY ERROR: UNABLE TO CREATE DSTAGE_WRAPPER
Replies: 6
Views: 3057

This one can be ameliorated if PWD environment variable is set to "." (current directory).
by ray.wurlod
Fri Dec 23, 2011 9:41 pm
Forum: General
Topic: parameters in Before/After job subroutine
Replies: 6
Views: 1685

Before/after subroutines only ever take a single string as argument. DataStage can perform parameter substitution in that string. What you seem to be asking for is a cut-down expression editor for the input value field.
by ray.wurlod
Fri Dec 23, 2011 9:40 pm
Forum: General
Topic: List Server, Parallel and Sequence jobs in 7.5.1
Replies: 4
Views: 2381

Category placeholders don't have a JOBNO value and therefore that is reported as 0. Craig's solution is the one to use.
by ray.wurlod
Fri Dec 23, 2011 9:37 pm
Forum: General
Topic: Memory utilisation of jobs in a project
Replies: 4
Views: 1073

Once you upgrade to 8.x DataStage includes its own performance analysis tool that reports on CPU, memory, disk and various other measures on a per-job and even a per-stage basis.
by ray.wurlod
Fri Dec 23, 2011 9:35 pm
Forum: General
Topic: No Engine credentials were found on the Services Tier
Replies: 15
Views: 8126

I certainly hope so. I'm about to set up a system with more than 30,000 Business Glossary users.
by ray.wurlod
Fri Dec 23, 2011 2:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help in building a simple parallel routine
Replies: 3
Views: 1212

You create and compile the routine external to DataStage. Preferably you also create and compile a main program with which to test it. The "parallel routine" that you create within DataStage is not actually a routine - it is an interlude - a record of the existence, location and arguments ...
by ray.wurlod
Fri Dec 23, 2011 2:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Validate Rule
Replies: 6
Views: 2577

Create a routine that can be passed the logic, fields to be tested and, if necessary, metadata.
by ray.wurlod
Fri Dec 23, 2011 2:46 am
Forum: General
Topic: No Engine credentials were found on the Services Tier
Replies: 15
Views: 8126

Re-open the WAS console and examine global security to see which method is actually in use.
by ray.wurlod
Fri Dec 23, 2011 12:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem retrieving data from db2
Replies: 9
Views: 4794

kanasai167 is on Windows. There is no dsenv file for Windows. It's only for UNIX-based servers.
by ray.wurlod
Fri Dec 23, 2011 12:06 am
Forum: General
Topic: Execute different actions based on the table count
Replies: 22
Views: 5757

You need a wrapper. Take a look at the example routines. or something like: FUNCTION MySendMail(aRecipient, aSubject, aBody, aAttachments) vServer = "MyEmailServer" vSender = "MyEmail@MyHost.com" vString = vServer : @FM : vSender : @FM : aRecipient : ... Call DSSendMail(vString) ...
by ray.wurlod
Fri Dec 23, 2011 12:02 am
Forum: General
Topic: End of Year Amusement
Replies: 8
Views: 2116

Works happily in IE8 and IE7 for me.
by ray.wurlod
Thu Dec 22, 2011 8:51 pm
Forum: General
Topic: End of Year Amusement
Replies: 8
Views: 2116

I forgot to mention that you can use your mouse to draw on the "frosted" screen with "let it snow".
by ray.wurlod
Thu Dec 22, 2011 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error for DB2 job
Replies: 11
Views: 3148

When you import from XML it's a two-stage process under the covers - first the XML is converted into DSX then a "real proper" import is done.