Search found 53125 matches

by ray.wurlod
Tue Apr 14, 2009 2:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sybase BCP load stage
Replies: 5
Views: 1370

Of course, provided you don't break any of the rules (Chapter 2 of the Parallel Job Developers Guide manual).
by ray.wurlod
Tue Apr 14, 2009 2:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Turning an Oracle sqlcode into a meaningful error message
Replies: 2
Views: 2809

There's a command line interface called oerr that can do it for you. From memory the syntax would be

Code: Select all

oerr ORA 1400
I expect you could use an External Filter stage to execute something like oerr ORA $1
by ray.wurlod
Tue Apr 14, 2009 2:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: External routine compliation problem
Replies: 4
Views: 1428

I don't see any mention of compiling and linking your C++ routine, nor any evidence that it compiled successfully and lacked a main() function.
by ray.wurlod
Tue Apr 14, 2009 12:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load entire data record into array and process in routine
Replies: 5
Views: 2266

Block move is not possible without hacking either the DS_JOBOBJECTS record or the DSX file.
by ray.wurlod
Tue Apr 14, 2009 12:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Resource DISK in Grid environment
Replies: 2
Views: 908

Resource DISK in Grid environment

Imagine a scenario in which the default configuration file has four nodes and three resource disk directories in each. And, for the sake of the argument, that they are twelve separate directories. When the job is run on a grid, and a dynamic configuration file is generated, how are the resource disk...
by ray.wurlod
Tue Apr 14, 2009 12:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sybase BCP load stage
Replies: 5
Views: 1370

Don't know. Not a Sybase expert.

Would think so, based on how the Oracle Enterprise stage works.
by ray.wurlod
Tue Apr 14, 2009 12:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load entire data record into array and process in routine
Replies: 5
Views: 2266

Did you not know that you can rearrange the order of any grid in DataStage? Select the "key" column - usually the leftmost - and slide it up or down, usually using the right mouse button for the drag/drop but just occasionally the left (ya gotta love the consistency). There is another way,...
by ray.wurlod
Mon Apr 13, 2009 11:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slow Dynamic Hash File
Replies: 10
Views: 5015

Some. The rest of the answer is tied up in the "how long is a piece of string" nature of any "impact on performance" question - what's the job doing, what else is happening, how busy is the metadata delivery service, how busy is the network if XMETA is on a different machine, and...
by ray.wurlod
Mon Apr 13, 2009 10:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load entire data record into array and process in routine
Replies: 5
Views: 2266

1) If you find fifty stage variables and one that concatenates them all into a string, then you'll find one that does the same plus inserts dynamic array delimiters even more difficult to maintain. And then there's maintaining the routine itself. The parsing into fifty fields and directing each to t...
by ray.wurlod
Mon Apr 13, 2009 10:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slow Dynamic Hash File
Replies: 10
Views: 5015

Keep in mind also that server jobs in version 8 operate in a "cocoon" in the parallel execution environment. Anything that has to use the services, such as metadata checking, has to go via translation into and back from strongly typed. This will necessarily introduce some overhead, though ...
by ray.wurlod
Mon Apr 13, 2009 10:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sybase BCP load stage
Replies: 5
Views: 1370

It's not available.

You use Sybase Enterprise stage, with write mode set to ASE Write or IQ Write. (Write is used to write and export data into a single table.)
by ray.wurlod
Mon Apr 13, 2009 9:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: packed decimal
Replies: 10
Views: 9282

Try using a Complex Flat File stage, which has got this functionality built right in.
by ray.wurlod
Mon Apr 13, 2009 9:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slow Dynamic Hash File
Replies: 10
Views: 5015

Well, there's always the static hashed file approach, but I agree with Ken's assessment. Maintaining static hashed files is more trouble than it's worth (this includes getting the initial size right).
by ray.wurlod
Mon Apr 13, 2009 9:30 pm
Forum: General
Topic: Satyam for quick sale to Tech Mahindra
Replies: 0
Views: 718

Satyam for quick sale to Tech Mahindra

This just in.
by ray.wurlod
Mon Apr 13, 2009 7:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Retrieving field and column usage from XMETA
Replies: 6
Views: 2655

XMETA is generally based on the "hub" used by the old MetaStage product - it has to have the flexibility to accept, store and deliver metadata in all different kinds of format, as well as to provide effective governance over those metadata (being a service-oriented architecture helps with ...