Search found 53125 matches

by ray.wurlod
Thu Dec 01, 2005 3:21 pm
Forum: Site/Forum
Topic: Lose The Graphics?
Replies: 6
Views: 3290

You actually wear the cost twice - when connecting to the site, then after logging in.
by ray.wurlod
Thu Dec 01, 2005 4:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UtilityMessageToLog error
Replies: 3
Views: 2163

Please explain how you called this routine, and from where in your job or routine design. You can examine this routine's code (it's provided as part of the SDK; it's name is UtilityMessageToLog - the all-upper case version is its "catalog" name) and you will note therein that it sets a return value ...
by ray.wurlod
Thu Dec 01, 2005 4:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to write expression
Replies: 3
Views: 1370

Put it in a server Routine and use the Test button there.
by ray.wurlod
Thu Dec 01, 2005 4:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wrapped stage
Replies: 12
Views: 4588

Then all you need is a before-job subroutine executing ExecSH with your script's path and command line arguments (all can be job parameter references) in the Input Values field.

A Wrapped stage would execute the script for every row processed by the job.
by ray.wurlod
Thu Dec 01, 2005 4:45 am
Forum: IBM QualityStage
Topic: QS Deduplication Job taking 2jrs for 34000 records
Replies: 13
Views: 7405

This is where you have to begin being a real detective. Maybe a good first step is to use a before/after subroutine to report who you are, your environment, and so on. If you have MKS Toolkit you can use UNIX commands like id and env to report these factors. Look for differences. Similarly look for ...
by ray.wurlod
Thu Dec 01, 2005 4:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ascential Certification
Replies: 9
Views: 4263

IBM Certified Solutions Developer Websphere IM DataStage Enterprise Edition Test Purpose This test will certify that the successful candidate has the skills and knowledge necessary to professionally design and develop an efficient and scalable DataStage solution to a complex enterprise level busine...
by ray.wurlod
Thu Dec 01, 2005 4:23 am
Forum: Site/Forum
Topic: Lose The Graphics?
Replies: 6
Views: 3290

Lose The Graphics?

How about losing the large pictures from the home page - move them to an optionally selected side page? Over the past week I've been using various connection modes, including hotel dialup lines charged by the nanosecond. The time to load the home page (about which there's no choice) was quite costly...
by ray.wurlod
Thu Dec 01, 2005 2:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wrapped stage
Replies: 12
Views: 4588

You avoided the question. Do you want to invoke this shell script once, or once for every row processed in a job? The answer to your original question depends on your answer to this one.
by ray.wurlod
Thu Dec 01, 2005 2:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Remove Duplicates from Flatfile?
Replies: 2
Views: 1370

You need to define "duplicate". This answer uses "has same key column(s)" as the definition. The UNIX command is sort -u (plus any other command line options needed). Most server job developers use a hashed file to remove duplicates, relying on the fact that any write to a hashed file with the same ...
by ray.wurlod
Thu Dec 01, 2005 2:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Not Getting Started
Replies: 5
Views: 1485

Please test your SELECT statement outside of DataStage, to determine whether that is the culprit.
by ray.wurlod
Thu Dec 01, 2005 2:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to write expression
Replies: 3
Views: 1370

LHS and RHS are metasyntactic variables - placeholders if you prefer. The pseudo-expression LHS=RHS serves only to remind you that whatever expression you use here must be resolvable in a Boolean context - that is, generate a true/false value.
by ray.wurlod
Thu Dec 01, 2005 2:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract field from XML
Replies: 4
Views: 1042

The fact that no-one replied suggests that this is a difficult problem to which no-one could contribute anything.

If you have solved it, please post the solution, so that others can be more productive.

If you have abandoned it, please post that fact also.

This is a place where we share.
by ray.wurlod
Thu Dec 01, 2005 2:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we get only job status???
Replies: 31
Views: 6898

DSJS.JOBSTATUS does not exist. The -1 you're getting is an error code meaning "bad handle", that is you have not attached the job to the current process. DSJ.JOBSTATUS is a DataStage constant, it is one of the possible arguments to DSGetJobInfo(). You can not use this in a job design to achieve your...
by ray.wurlod
Thu Dec 01, 2005 1:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Size Limit
Replies: 2
Views: 1048

Welcome aboard. :D The size can be as large as the operating system will permit in the case of a Sequential File, and very very large (if needed) for a File Set. A File Set is spread over the processing nodes defined in the configuration file and consists of one or more logical files (each no larger...
by ray.wurlod
Thu Dec 01, 2005 1:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wrapped stage
Replies: 12
Views: 4588

Do you want to invoke this script once, or once for every row processed?