Search found 15603 matches

by ArndW
Thu Jan 21, 2010 8:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: page can't be displayed when try open administrator console
Replies: 9
Views: 3751

I couldn't see an error in that log file output. If the server as well doesn't come up and run then the .net issue is further reaching and a complete reinstall might be the quickest way to resolve your problems.
by ArndW
Thu Jan 21, 2010 7:57 am
Forum: General
Topic: Reg : Usage analysis
Replies: 2
Views: 1117

I was going to refer you to the documentation, but I just did a complete search of the DS8 PDF documentation and only found minor reference to this powerful new functionality, at least with the term "usage analysis"; I then did a "find where used" and got a better reference, plea...
by ArndW
Thu Jan 21, 2010 7:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I restart the server after particular job finished?
Replies: 32
Views: 37342

UVTEMP is where temporary files are placed. Where it is located on the system is not as important as making sure that there is sufficient temporary space available at that location. It is not a good idea to have it on the same partition as the DataStage server, since the DataStage engine is very sen...
by ArndW
Thu Jan 21, 2010 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage error
Replies: 2
Views: 2258

Go to the stage before the join stage for all of your inputs and ensure that the column is present and declared with the same attributes everywhere.
by ArndW
Thu Jan 21, 2010 7:42 am
Forum: General
Topic: Could please tell me something about pantam error
Replies: 3
Views: 1102

A "Phantom" process is a term used to mean background processes or ones that aren't associated with a terminal. Historically this comes from the UniVerse implementation nomenclature on Prime hardware and PRIMOS, where the term was used.
by ArndW
Thu Jan 21, 2010 4:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: page can't be displayed when try open administrator console
Replies: 9
Views: 3751

What is the exact error? My guess is that the quickest solution is to reinstall your client software.
by ArndW
Thu Jan 21, 2010 4:11 am
Forum: General
Topic: JOB CONTROL
Replies: 3
Views: 1251

You will need to provide a bit more information in order to get a solution.
The process code you mentioned is computed or derived somehow in a job. How about writing this to a file, and then in a job sequence reading that value and using that to call up your actual job.
by ArndW
Thu Jan 21, 2010 4:04 am
Forum: General
Topic: How we can manage the &ph& folder in UNIX system
Replies: 7
Views: 2196

The contents of the &PH& subdirectory can be managed by creating an external process that deletes files. You can use cron to schedule a daily run of a command such as "find {path_to_&PH&} -mtime +1 -exec rm {} \;" to remove all files not modified (or created) in the past day.
by ArndW
Wed Jan 20, 2010 11:12 am
Forum: IBM QualityStage
Topic: Use of the Filescan utility on Unix
Replies: 4
Views: 1595

"filescan" is not, to my knowledge, a standard UNIX command in any flavor I know of. Filescan is actually a utility used in Quality Stage to run on your datafiles to fix issues with fieldlengths. TIA Martina Oh my, shame on me... and it shows which parts of DS I will need to concentrate o...
by ArndW
Wed Jan 20, 2010 10:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: wait job
Replies: 10
Views: 2204

Quoted from the DataStage BASIC Programmers Guide:
This function is only valid if the current job has issued a DSRunJob on the given JobHandle(s). It returns if the/a job has started since the last DSRunJob has since finished
by ArndW
Wed Jan 20, 2010 10:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to see the any thing in the DataStage Log
Replies: 6
Views: 2001

That message comes from the log, right? Do you mean you cannot see any more messages in the log after that one?
by ArndW
Wed Jan 20, 2010 6:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: wait job
Replies: 10
Views: 2204

:oops: I had forgotten to check that routine. I think it will only work if the job from which it is called is also the one which started the job in the first place, but that is worth checking into, since the resultant code would be a short: JobHandle = DSAttachJob('YourJob',DSJ.ERRNONE) Dummy = DSWa...
by ArndW
Wed Jan 20, 2010 6:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS-PX Day from Date
Replies: 4
Views: 1360

Ray - that is why I posted both %e and %E as those cover the 2 different commonly used first weekday definitions.
by ArndW
Wed Jan 20, 2010 6:21 am
Forum: General
Topic: CORBA Marshall access issue
Replies: 2
Views: 1981

That means that while you have a path to the machine, there is no listener at port 1858 or that access to that port is blocked.

Try the telnet command from one of the workstations that can work and see if they can see that port.
by ArndW
Wed Jan 20, 2010 6:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: wait job
Replies: 10
Views: 2204

The best way is not to call the job from a sequence until the precursors have completed. If that is not possible, then you can do as follows: Even in PX jobs the job control code is in BASIC. Thus, you could add code JobHandle = DSAttachJob('YourJob',DSJ.ERRNONE) Finished = 0 LOOP UNTIL Finished Job...