Search found 53125 matches

by ray.wurlod
Thu Feb 02, 2006 3:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset key management
Replies: 2
Views: 1013

You can also reset to any particular value using an UPDATE statement. It has been posted before, but the trick here is - because the SDKSequences hashed file lacks a complete dictionary (set of metadata) - to "borrow" another hashed file's metadata via a USING clause. Let's say you want to reset the...
by ray.wurlod
Thu Feb 02, 2006 3:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Port Number
Replies: 6
Views: 2035

Yes, but it's much easier on UNIX than on Windows. Why would you want to do so? A lot of thought went into choosing 31538 as a port number that didn't seem to be in use anywhere else for anything at all.
by ray.wurlod
Thu Feb 02, 2006 3:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable bind DSN for DB2
Replies: 3
Views: 2136

The key to it all is this statement: System error: A file or directory in the path name does not exist. This suggests that the shared library path environment variable (LD_LIBRARY_PATH, SHLIB_PATH or LIBPATH, depeding on your UNIX) has not been set properly (probably in dsenv). Determine, perhaps us...
by ray.wurlod
Thu Feb 02, 2006 3:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Resetting a crashed [status 96] job
Replies: 4
Views: 5380

It is impossible for a cleared status file to report "Running". Did you refresh the view? Did you clear the right RT_STATUSnn file? (Eek!) You could, with somewhat more finesse, identify the status field for the job plus each stage and resource in the RT_STATUSnn file and reset them individually if ...
by ray.wurlod
Thu Feb 02, 2006 3:12 am
Forum: Site/Forum
Topic: Craig hits 5000 Posts!
Replies: 9
Views: 4438

Craig hits 5000 Posts!

Fanfare!!
by ray.wurlod
Wed Feb 01, 2006 6:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Resetting a crashed [status 96] job
Replies: 4
Views: 5380

It's actually RT_STATUSnn (not DS_, which are design-time information, and with a job number suffix). You need to find the job number from DS_JOBS then clear the data from the RT_STATUSnn hashed file. This is possible with commands. SELECT JOBNO FROM DS_JOBS WHERE NAME = 'JobName'; CLEAR.FILE RT_STA...
by ray.wurlod
Wed Feb 01, 2006 5:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Job aborted Notification
Replies: 8
Views: 3758

Routine activity invoking UtilityAbortToLog will abort the main sequence. But it will not send stop notifications to currently running jobs. In 7.0 this is not quite so easy to do. You can create your own routine that will detect what the controlled jobs are, attach, issue DSStopJob request and deta...
by ray.wurlod
Wed Feb 01, 2006 5:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is DB Client required for Configuring DSN on ETL Server?
Replies: 5
Views: 1911

As far as DB2 is concerned, DataStage job is just another client application. Therefore the DataStage job needs to have access to the client software (DB2 Connect perhaps).
by ray.wurlod
Wed Feb 01, 2006 5:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help in fixing Errors in Routine
Replies: 5
Views: 1244

Code: Select all

Seek FileVar,0,2 Else NULL

is much, much more efficient than

Code: Select all

Loop 
ReadSeq Dummy From FileVar Else Exit ; * at end-of-file
Repeat
by ray.wurlod
Wed Feb 01, 2006 5:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Administrator client hangs
Replies: 16
Views: 5395

When you connect with the Administrator client do you have administrator privilege? Are there very many UNIX groups on your server's domain? It may be taking a long time to determine who belongs to the various groups. Indeed, this sometimes out with "unable to enumerate domain groups" if the domain ...
by ray.wurlod
Wed Feb 01, 2006 5:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding UV.Account
Replies: 9
Views: 2324

You never really stated what your issue was. Be very, very careful with Repository objects; if you cripple them your support provider won't help and you may even void your warranty.
by ray.wurlod
Wed Feb 01, 2006 5:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how do i defined the dynamic files in data stage?
Replies: 2
Views: 1198

I wonder if the interviewer knows the right answer?! Actually, that should be answers (plural). I can cite at least five different ways to create a dynamic hashed file. These include the following. Do nothing in a Hashed File stage Check Create File in a Hashed File stage and don't visit the Options...
by ray.wurlod
Wed Feb 01, 2006 5:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file cleared for zero record
Replies: 2
Views: 1158

Is there an entry for the hashed file in the VOC? If not, that form of CLEAR.FILE will not work, and generate an @ABORT.CODE of 3.
by ray.wurlod
Wed Feb 01, 2006 5:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Encrypted password in a batch file to call dsimport
Replies: 7
Views: 5454

Welcome aboard. :D

The answer, alas, is NO. You need to provide some other mechanism, like specifying an environment variable to be used. The environment variable can contain the password. Encrypted environment variables are supported from version 7.5 (or is it 7.5.1?).
by ray.wurlod
Wed Feb 01, 2006 5:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fpt stage is reading the extra null record from the soure
Replies: 1
Views: 789

It's probably an extra line termination character at the end of the file.
If you can't change the file, handle it with a rejects link and/or create a message handler to demote the warning to an informational message.