Search found 53125 matches

by ray.wurlod
Thu Oct 12, 2006 4:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare the two dates which is Greater
Replies: 8
Views: 6241

There are several ways to solve this. Do you have any ideas about how you wish to proceed? For example, is the comparison to be performed row by row?
by ray.wurlod
Thu Oct 12, 2006 3:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage
Replies: 7
Views: 2508

The following functions are available for the Modify stage. trimc(string) trimc(string, ch) trimc(string, ch, option) trim_trailing(string) trim_leading(string) strip_whitespace(string) compact_whitespace(string) trim_leading_trailing(string) I think that the last of these might be close to what you...
by ray.wurlod
Thu Oct 12, 2006 3:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is the server loaded?
Replies: 1
Views: 1314

Have you taken a training class such as DX434 DataStage Essentials Enterprise Edition ? There you would have learned about the orchestra metaphor used by Orchestrate; the conductor, section leader and player processes. Search the forum for error code -14, which suggests that the server is overloaded...
by ray.wurlod
Wed Oct 11, 2006 11:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Access Universe through UNIX
Replies: 12
Views: 3760

Please post the result of the command

Code: Select all

cat /.dshome
by ray.wurlod
Wed Oct 11, 2006 11:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join Stage
Replies: 9
Views: 2858

string_trim[character,direction,justify](string)

or

trim_leading_trailing(string)

See page 13-7 of Orchestrate Operators manual for full details.
by ray.wurlod
Wed Oct 11, 2006 10:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Access Universe through UNIX
Replies: 12
Views: 3760

Code: Select all

export DSHOME=`cat /.dshome`
by ray.wurlod
Wed Oct 11, 2006 10:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Whole Project clean up
Replies: 6
Views: 1163

Delete then add is fast, cheap and probably error-free (provided you get the pathname correct). Copy the pathname before deleting the project, paste it when re-creating.
by ray.wurlod
Wed Oct 11, 2006 10:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Tuning
Replies: 5
Views: 1224

With a hashed file that size, do the initial population in a separate job, WITH write cache enabled. Be amazed!
by ray.wurlod
Wed Oct 11, 2006 7:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: calling DSfunction or Macro in Before SQL
Replies: 4
Views: 1474

I don't think it's possible to use DS functions in before-SQL. A reference to a DS macro (surrounded by "#" characters) may be possible, but I'd be dubious about that too.
by ray.wurlod
Wed Oct 11, 2006 7:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Tuning
Replies: 5
Views: 1224

You might also try using Write Cache, having allowed the maximum possible cache size (999MB).
by ray.wurlod
Wed Oct 11, 2006 7:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Where does DataStage generates this Query
Replies: 3
Views: 844

Where do you find this script? DataStage only generates SELECT statements where there is a stage that both supports SQL and has an output link. Unless "Source File" in your design is not a file but a table, I can't envisage this job generating this SELECT statement. The only possibility is that some...
by ray.wurlod
Wed Oct 11, 2006 7:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: BASIC Compilation Error
Replies: 10
Views: 2980

:idea: There's a formatting tool in the server routines editor.
by ray.wurlod
Wed Oct 11, 2006 6:58 pm
Forum: General
Topic: Filter stage - documentation error?
Replies: 4
Views: 3081

It's correct. Logic is left to right where there are no parentheses. So the two AND operators will have been evaluated before it gets to the OR operator. (Optimized it may not even get to the OR operator if one of the preceding conditions is not true.)
by ray.wurlod
Wed Oct 11, 2006 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: is serverjob functions and paralleljob functions are differe
Replies: 6
Views: 1760

Ask your support provider to provide the "OEM 75" (Orchestrate) manuals. They should be able to get them from IBM in PDF format. They are handed out on all IBM training classes.
by ray.wurlod
Wed Oct 11, 2006 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OCONV-MCP replacement for PX
Replies: 7
Views: 2640

:idea: That approach would probably also work in an External Filter stage.