Search found 53125 matches

by ray.wurlod
Thu Mar 27, 2008 5:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading the DSJobReport file
Replies: 10
Views: 3698

I don't see any junk.

Do you mean line terminators?
These are converted to field marks (@FM) when the file is loaded into a string, so that there's a consistent interface whether the operating system is UNIX (single-character line terminators) or Windows (dual-character line terminators).
by ray.wurlod
Thu Mar 27, 2008 5:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Method of partitioning
Replies: 12
Views: 4379

Writing a sequential file necessarily can only use one node.

How many nodes are mentioned in your configuration file (whose pathname is set by APT_CONFIG_FILE environment variable)?
by ray.wurlod
Thu Mar 27, 2008 5:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: imported dsx file between two datastage looks corrupted
Replies: 2
Views: 1088

Also, have you rolled in all the fixes for DataStage? There were - if my memory serves - one or two issues with updating remote XMETA databases. Or was it non-DB2 XMETA databases? Anyway, check whether the cumulative fixes have been rolled in.
by ray.wurlod
Thu Mar 27, 2008 5:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: connecting postgres using odbc drivers thru datastage
Replies: 10
Views: 17162

Have you checked that the executing user ID has sufficient permission to /home/p139pkg/odbc/source/lib/pgr7_mt_lt.so including "x" to the shared object itself?
by ray.wurlod
Thu Mar 27, 2008 5:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS7 to DS8.0 Migration Issue
Replies: 10
Views: 3065

Look CAREFULLY at the error message.

WHAT is not found? Gosh, it's a shared library (".so" suffix)!

Could it be, one wonders, that your shared library search path (probably the one set in dsenv) does not include the parent directory of libvmdsapi.so ?
by ray.wurlod
Thu Mar 27, 2008 5:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: odbc stage tns error.
Replies: 18
Views: 4738

The error message suggests that the tnsnames.ora file was found successfully, but the configuration therein for the given TNS name was incorrect. It is that that I would be checking.
by ray.wurlod
Thu Mar 27, 2008 5:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Lock
Replies: 7
Views: 2027

The Engine Resource Service IS working properly. However, it has nothing to do with locks (unless it is not running, since one of its roles is to prevent Windows from "cleaning up" the lock tables from shared memory). Restarting the service involves stopping it, which clears the shared memory contai...
by ray.wurlod
Thu Mar 27, 2008 5:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find Port number for DataStage server in UNIX
Replies: 5
Views: 8039

Do you have a firewall somewhere blocking port #31538 ?
by ray.wurlod
Thu Mar 27, 2008 5:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Skipping routine when re-run
Replies: 6
Views: 2363

Any activity (except a Sequencer) has a "do not checkpoint run" checkbox. If this is selected that activity is always executed, even if checkpoints are enabled.
by ray.wurlod
Thu Mar 27, 2008 5:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pass multiple parameters to routine activity stage
Replies: 4
Views: 1545

Sequencers don't have routine activities. Job sequences do.

Indeed, sequencers only have one property, "Any" or "All".
by ray.wurlod
Thu Mar 27, 2008 5:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting SQL query into Datastage server jobs
Replies: 7
Views: 2158

You can NOT convert it into a DataStage job until you understand the logic of what the SQL is doing! And no-one here is going to profit from doing that analysis, which is why I am insisting that you do it. Converting the SQL into a DataStage job will make no difference whatsoever to how "reporting p...
by ray.wurlod
Thu Mar 27, 2008 5:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing value of one job to another
Replies: 8
Views: 5770

Your design is good (provided the job activity name is correctly spelled and cased when used in the job parameter expression). What value are you getting? (Look in the log for the parameter value.)
by ray.wurlod
Thu Mar 27, 2008 4:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: value formatting
Replies: 2
Views: 952

[urlhttp://www.pickwiki.com/cgi-bin/wiki.pl?Date_Conversion_Demystified]This article[/url] will aid your understanding of using the Oconv() and Iconv() functions with dates.
by ray.wurlod
Thu Mar 27, 2008 4:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Replacing ' with &apos;
Replies: 8
Views: 3007

Wolfgang, the USA can be a pretty sheltered, packaged, environment sometimes!
by ray.wurlod
Thu Mar 27, 2008 4:55 pm
Forum: General
Topic: date function : routines
Replies: 13
Views: 5794

Depending on where the command output came from you may need to trim field marks (@FM) from it before applying the Iconv() function. Otherwise you are on the right track.