Search found 53125 matches

by ray.wurlod
Sat Feb 25, 2006 1:51 am
Forum: General
Topic: DS_JOBS
Replies: 18
Views: 14353

It's no good being in PATH, which is the command search path. It must be in the shared library search path, which is LD_LIBRARY_PATH, SHLIB_PATH or LIBPATH, depending on what kind of UNIX you are using.
by ray.wurlod
Sat Feb 25, 2006 1:47 am
Forum: IBM QualityStage
Topic: Is there any file size limit on QS input files?
Replies: 5
Views: 2216

And these are?
by ray.wurlod
Fri Feb 24, 2006 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Query sequential files?
Replies: 5
Views: 1315

The "most efficient" way will depend on exactly what you want to achieve, whether the queries are run in the same database, and a number of other factors. For example, can you form the join (or union) of the three queries in the database itself? That would probably be very efficient, and you may not...
by ray.wurlod
Fri Feb 24, 2006 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI Load (Automatic Mode) Error
Replies: 31
Views: 9237

"It's failing" doesn't help us to help you. What error message(s) get produced?
by ray.wurlod
Fri Feb 24, 2006 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Control General Question
Replies: 30
Views: 9255

I am beginning to believe that job sequences (at version 7.5) can do pretty much anything you need, with a bit of care and forethought. Using job sequences will offer some protection against the day when "they" decide to drop the use of BASIC (though that's not any time soon).

Bonne chance!
by ray.wurlod
Fri Feb 24, 2006 3:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Configuring userids on Datastage server
Replies: 11
Views: 7022

Error code 39202 relates to a failure to connect. It decodes (from the InterCall Developer's Guide from IBM) as "slave failed to give server the Go Ahead message", which is an internal coordination-between-processes error. Re-booting the server may help. Otherwise contact your support provider and/o...
by ray.wurlod
Fri Feb 24, 2006 2:58 pm
Forum: General
Topic: DS_JOBS
Replies: 18
Views: 14353

No, you said that $DSHOME/lib is in the shared library search path, but you never mentioned that libgciudt6.so was in that directory. That's why I asked the question.
by ray.wurlod
Fri Feb 24, 2006 2:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to make the DataStage jobs Read only.
Replies: 9
Views: 9411

Three problems with that solution. 1. There's no WHERE in the SQL statement (its location should be obvious). 2. There's no column called NAME in the DS_JOBOBJECTS table. 3. It's more appropriate to change the setting on the DS_JOBS table, which does have a NAME column. UPDATE DS_JOBS SET READONLY =...
by ray.wurlod
Fri Feb 24, 2006 2:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error Code Dictionary
Replies: 11
Views: 12089

In the next ("Hawk") release is promised an error code meanings and remedies manual.
by ray.wurlod
Fri Feb 24, 2006 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error Code Dictionary
Replies: 11
Views: 12089

Some of the client/server connection error codes that you won't find anywhere else are in the Intercall Reference Guide - this is a UniVerse manual.
by ray.wurlod
Thu Feb 23, 2006 11:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: REG : PIC Basic
Replies: 3
Views: 836

The DataStage server itself is not entirely coded in DataStage BASIC, which is a vast superset of Pick BASIC. The server is also coded in other languages, primarily C, for example for those pieces that must deal directly with operating system resources. The ultimate reference for DataStage BASIC is ...
by ray.wurlod
Thu Feb 23, 2006 11:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: joining rows
Replies: 17
Views: 4645

So? Nothing wrong with having 101 stage variables. Call them dalmatian variables. :lol:
by ray.wurlod
Thu Feb 23, 2006 11:48 pm
Forum: General
Topic: DS_JOBS
Replies: 18
Views: 14353

But is the directory in which libgciudt6.so is located referred to in that search path? Where is libgciudt6.so ?
by ray.wurlod
Thu Feb 23, 2006 2:30 pm
Forum: General
Topic: DS_JOBS
Replies: 18
Views: 14353

The uv command does a little more in guaranteeing that you have a clean environment in which to work. It eventually invokes dssh (which is a synonym for uvsh ). Before that, it has failed to find the library libgciudt6.so - could be an issue with how your LD_LIBRARY_PATH environment variable is set,...
by ray.wurlod
Thu Feb 23, 2006 2:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: search source file for a particular value
Replies: 3
Views: 1106

Or you can use grep or awk as a filter command in a Sequential File stage either directly or by using the name of your script as the filter. Make sure you output only the rows with which you want DataStage to deal.