Search found 53125 matches

by ray.wurlod
Wed Apr 05, 2006 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: kill job using job id
Replies: 15
Views: 6609

A DataStage parallel job consists of many processes - there is a conductor process, a section leader process on each processing node, and player processes on each processing node. Just from that description you should appreciate that kill is not the best way to stop a job - how could you be sure tha...
by ray.wurlod
Wed Apr 05, 2006 3:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ascii equivalent of control C character
Replies: 3
Views: 946

It is indeed 003. It's useful sometimes to know that Ctrl-A through Ctrl-Z are represented in ASCII as code points 001 through 026 (decimal).
by ray.wurlod
Wed Apr 05, 2006 3:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TNS connection problem
Replies: 1
Views: 1927

You need to ask your Oracle DBA about this. It's Oracle that's closing the connection, not DataStage. The DBA ought to be able to use tracing tools to determine a cause.
by ray.wurlod
Wed Apr 05, 2006 3:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Precision and scale problem
Replies: 3
Views: 973

Neither float nor dfloat can be guaranteed accurately to represent numbers. Prefer decimal[10,4] (or larger precision if needed). What data types are the four inbound columns?
by ray.wurlod
Wed Apr 05, 2006 3:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Project parameter usage in derivations.
Replies: 1
Views: 1077

Looks like a bug. Have you reported it to your support provider and, if so, with what result?
by ray.wurlod
Wed Apr 05, 2006 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job reports failure (code 134)
Replies: 3
Views: 4740

It's an environment variable. You can set it anywhere you like, including /etc/profile, $HOME/.profile and so on. For DataStage processes it should be set in $DSHOME/dsenv.
by ray.wurlod
Wed Apr 05, 2006 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before Routine and parameters passed on the command line
Replies: 10
Views: 2439

Arnd should have been more definite. Using these internal, undocumented structures will not work in a future release, because the next release delivers metadata via a service (the Metadata Delivery Service), not out of accessible structures. Nor are the metadata stored in a UniVerse-like database an...
by ray.wurlod
Wed Apr 05, 2006 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX jobs performing slow
Replies: 11
Views: 4500

Thanks ray... but in order to seperate inserts and updates I have to again do a look up on the target to distinguish with between inserts and updates. And there by increasing changes of table scanning since my target would have to also serve as look up. THis has the potential of decreasing performa...
by ray.wurlod
Wed Apr 05, 2006 3:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: vertical pivot
Replies: 15
Views: 5927

You could, but you would probably find it easier to do that in a downstream stage.
by ray.wurlod
Wed Apr 05, 2006 3:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I get the full /path/project list?
Replies: 9
Views: 2300

Welcome aboard. :D Not dssh.exe on UNIX, just plain dssh - and you probably want to specify exactly the fields from UV_SCHEMA (or UV_ACCOUNT) that you want in the output - for example, you are probably not interested in the numeric ID of the owner or creator. I prefer to give SQL syntax, even though...
by ray.wurlod
Wed Apr 05, 2006 2:58 pm
Forum:
Topic: About MetaState
Replies: 5
Views: 1826

You get the documentation with the software. If you haven't got the software yet talk to your vendor, who will be able to supply same. MetaStage is a complex piece of software that, in my experience, can not sensibly be used out of the box without some training. So do schedule that training as early...
by ray.wurlod
Tue Apr 04, 2006 11:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error: osh.exe is not a valid win32 application
Replies: 4
Views: 2708

After "no data returned" click Yes to view additional information, and post that. There is no way to tell whether your installation has been successful based on the information thus far posted. All we can tell from your last post is that you are generating a row with a single int32 column called COl...
by ray.wurlod
Tue Apr 04, 2006 11:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Timezone Conversion
Replies: 8
Views: 5876

Set up $TZ as a job parameter. Make its default value $ENV, so that it's picked up from the UNIX environment.
by ray.wurlod
Tue Apr 04, 2006 11:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: message handler disabled
Replies: 4
Views: 929

Design your jobs so that warnings don't occur. It CAN be achieved.
by ray.wurlod
Tue Apr 04, 2006 11:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: phantom error
Replies: 1
Views: 603

"Phantom" is the DataStage term for "background process". You know what "error" means. Looks like there's a problem either with the ODBC driver manager or with the ODBC driver for SQL Server itself. Reset the job in Director. Is there any "from previous run..." message containing additional diagnost...